1 | <?php |
||
18 | class FileSystemLoader implements LoaderInterface |
||
19 | { |
||
20 | /** |
||
21 | * @var LocatorInterface |
||
22 | */ |
||
23 | private $locator; |
||
24 | |||
25 | /** |
||
26 | * @param LocatorInterface $locator |
||
27 | */ |
||
28 | public function __construct(LocatorInterface $locator) |
||
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | */ |
||
36 | public function find(string $identity): FileInterface |
||
40 | } |
||
41 |