1 | <?php |
||
9 | class Import implements ImportInterface |
||
10 | { |
||
11 | /** |
||
12 | * Lines of config file |
||
13 | * |
||
14 | * @var array |
||
15 | */ |
||
16 | public $lines = []; |
||
17 | |||
18 | /** |
||
19 | * Import constructor, can import file on starting |
||
20 | * |
||
21 | * @param string|null $filename Path to config file |
||
22 | * @param bool $isContent If true, then path mean content of config file |
||
23 | */ |
||
24 | 3 | public function __construct(string $filename = null, bool $isContent = false) |
|
32 | |||
33 | /** |
||
34 | * Check if line is valid config line, TRUE if line is okay. |
||
35 | * If empty line or line with comment then FALSE. |
||
36 | * |
||
37 | * @param string $line |
||
38 | * |
||
39 | * @return bool |
||
40 | */ |
||
41 | 2 | private function isLine(string $line): bool |
|
50 | |||
51 | /** |
||
52 | * {@inheritDoc} |
||
53 | */ |
||
54 | 1 | public function read(string $filename): array |
|
60 | |||
61 | /** |
||
62 | * {@inheritDoc} |
||
63 | */ |
||
64 | 2 | public function load($content, string $type = 'raw'): array |
|
91 | |||
92 | /** |
||
93 | * {@inheritDoc} |
||
94 | */ |
||
95 | 3 | public function parse(): ConfigInterface |
|
110 | } |
||
111 |