We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37b82ae commit 63575beCopy full SHA for 63575be
phpmyfaq/src/phpMyFAQ/Filesystem.php
@@ -31,12 +31,7 @@ class Filesystem
31
private string $path;
32
33
/**
34
- * @var string[]
35
- */
36
- private array $folders = [];
37
-
38
- /**
39
- * Constructor, sets the root path of the master phpMyFAQ installation.
+ * Constructor, sets the root path of the primary phpMyFAQ installation.
40
*/
41
public function __construct(string $rootPath = '')
42
{
@@ -52,22 +47,6 @@ public function getRootPath(): string
52
47
return $this->rootPath;
53
48
}
54
49
55
56
- * @return string[]
57
58
- public function getFolders(): array
59
- {
60
- return $this->folders;
61
- }
62
63
64
- * @param string[] $folders
65
66
- public function setFolders(array $folders): void
67
68
- $this->folders = $folders;
69
70
71
50
public function getPath(): string
72
51
73
return $this->path;
0 commit comments