1 | <?php namespace Tarsana\Command\Config; |
||
8 | class Config implements ConfigInterface { |
||
9 | /** |
||
10 | * The raw configuration data. |
||
11 | * |
||
12 | * @var array |
||
13 | */ |
||
14 | protected $data; |
||
15 | |||
16 | public function __construct(array $data) { |
||
19 | |||
20 | /** |
||
21 | * Gets a configuration value by path. |
||
22 | */ |
||
23 | public function get(string $path = null) |
||
36 | } |
||
37 |