| 1 | <?php |
||
| 16 | class ChainLoader implements LoaderInterface |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var LoaderInterface[] |
||
| 20 | */ |
||
| 21 | private $loaders; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param LoaderInterface[] $loaders |
||
| 25 | */ |
||
| 26 | public function __construct(array $loaders) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | public function find($path) |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @return string |
||
| 54 | */ |
||
| 55 | private function getLoaderNamesString() |
||
| 64 | } |
||
| 65 |