1 | <?php |
||
13 | final class ClassLoaderDecorator |
||
14 | { |
||
15 | /** |
||
16 | * @var StandardFinder |
||
17 | */ |
||
18 | private $standardFinder; |
||
19 | |||
20 | public function __construct(StandardFinder $standardFinder) |
||
24 | |||
25 | public function decorate(ClassLoader $classLoader) |
||
43 | |||
44 | private function isDefaultStandard(string $stadardName) : bool |
||
51 | |||
52 | private function detectStandardNamespaceFromStandardName(string $standardName) : string |
||
56 | } |
||
57 |