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