1 | <?php |
||
13 | class GaufretteLoader implements LoaderInterface |
||
14 | { |
||
15 | /** |
||
16 | * @var Filesystem |
||
17 | */ |
||
18 | protected $filesystem; |
||
19 | |||
20 | /** |
||
21 | * Constructor |
||
22 | * |
||
23 | * @param Filesystem $filesystem |
||
24 | */ |
||
25 | 4 | public function __construct(Filesystem $filesystem) |
|
29 | |||
30 | /** |
||
31 | * {@inheritDoc} |
||
32 | */ |
||
33 | 4 | public function load($path) |
|
55 | } |
||
56 |