1 | <?php |
||
10 | final class FileLoader implements LoaderInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var DecoderInterface |
||
14 | */ |
||
15 | private $jsonDecoder; |
||
16 | |||
17 | /** |
||
18 | * @param DecoderInterface $jsonDecoder |
||
19 | */ |
||
20 | 62 | public function __construct(DecoderInterface $jsonDecoder = null) |
|
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | 38 | public function load($path) |
|
38 | } |
||
39 |