| 1 | <?php |
||
| 16 | class Autoloader implements AutoloaderInterface |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var \ProxyManager\FileLocator\FileLocatorInterface |
||
| 20 | */ |
||
| 21 | protected $fileLocator; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var \ProxyManager\Inflector\ClassNameInflectorInterface |
||
| 25 | */ |
||
| 26 | protected $classNameInflector; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param \ProxyManager\FileLocator\FileLocatorInterface $fileLocator |
||
| 30 | * @param \ProxyManager\Inflector\ClassNameInflectorInterface $classNameInflector |
||
| 31 | */ |
||
| 32 | 4 | public function __construct(FileLocatorInterface $fileLocator, ClassNameInflectorInterface $classNameInflector) |
|
| 37 | |||
| 38 | /** |
||
| 39 | * {@inheritDoc} |
||
| 40 | */ |
||
| 41 | 4 | public function __invoke(string $className) : bool |
|
| 57 | } |
||
| 58 |