Optimized NamespacePathMap

This commit is contained in:
Kevin Frantz
2019-01-06 14:38:28 +01:00
parent 72d0a6ba95
commit 77822b8e56
3 changed files with 91 additions and 8 deletions

View File

@@ -32,10 +32,10 @@ interface NamespacePathMapInterface
/**
* @param array|string[] $folders
*/
public function setFolderArray(array $folders): void;
public function setFolders(array $folders): void;
/**
* @return array|string[]
*/
public function getFolderArray(): array;
public function getFolders(): array;
}