Skip to content

Commit 63575be

Browse files
committed
chore: removed unused methods
1 parent 37b82ae commit 63575be

File tree

1 file changed

+1
-22
lines changed

1 file changed

+1
-22
lines changed

phpmyfaq/src/phpMyFAQ/Filesystem.php

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,7 @@ class Filesystem
3131
private string $path;
3232

3333
/**
34-
* @var string[]
35-
*/
36-
private array $folders = [];
37-
38-
/**
39-
* Constructor, sets the root path of the master phpMyFAQ installation.
34+
* Constructor, sets the root path of the primary phpMyFAQ installation.
4035
*/
4136
public function __construct(string $rootPath = '')
4237
{
@@ -52,22 +47,6 @@ public function getRootPath(): string
5247
return $this->rootPath;
5348
}
5449

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-
7150
public function getPath(): string
7251
{
7352
return $this->path;

0 commit comments

Comments
 (0)