Skip to content

Commit

Permalink
chore: removed unused methods
Browse files Browse the repository at this point in the history
  • Loading branch information
thorsten committed Jul 10, 2023
1 parent 37b82ae commit 63575be
Showing 1 changed file with 1 addition and 22 deletions.
23 changes: 1 addition & 22 deletions phpmyfaq/src/phpMyFAQ/Filesystem.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,7 @@ class Filesystem
private string $path;

/**
* @var string[]
*/
private array $folders = [];

/**
* Constructor, sets the root path of the master phpMyFAQ installation.
* Constructor, sets the root path of the primary phpMyFAQ installation.
*/
public function __construct(string $rootPath = '')
{
Expand All @@ -52,22 +47,6 @@ public function getRootPath(): string
return $this->rootPath;
}

/**
* @return string[]
*/
public function getFolders(): array
{
return $this->folders;
}

/**
* @param string[] $folders
*/
public function setFolders(array $folders): void
{
$this->folders = $folders;
}

public function getPath(): string
{
return $this->path;
Expand Down

0 comments on commit 63575be

Please sign in to comment.