1 | <?php namespace Tarsana\Command\Config; |
||
12 | class ConfigLoader implements ConfigLoaderInterface { |
||
13 | |||
14 | protected static $decoders = [ |
||
15 | 'json' => JsonDecoder::class |
||
16 | ]; |
||
17 | |||
18 | protected $fs; |
||
19 | |||
20 | public function __construct(FilesystemInterface $fs) |
||
24 | |||
25 | public function load(array $paths) : ConfigInterface |
||
36 | |||
37 | protected function decode(string $path) : array { |
||
48 | } |
||
49 |