4 declare(strict_types=1);
13 if (!@is_dir(self::BASE_PLUGIN_PATH)) {
14 throw new LogicException(
'Path not found: ' . self::BASE_PLUGIN_PATH);
17 $it =
new RecursiveDirectoryIterator(self::BASE_PLUGIN_PATH);
19 $path = $file->getPathName();
20 if (is_file($path) && basename($path) === self::SEARCH_PATTERN) {
21 yield basename(dirname($path));
29 return in_array(
$name, $names);