Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3.2098 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
38 | 17 | public function parse() |
|
39 | { |
||
40 | 17 | if (is_null($this->configSource)) { |
|
41 | $this->logger->error('Добавьте данные для парсинга'); |
||
42 | return null; |
||
43 | } |
||
44 | |||
45 | 17 | if (!is_file($this->configSource)) { |
|
46 | 12 | return $this->parseString($this->configSource); |
|
47 | } |
||
48 | |||
49 | 5 | return $this->parseFile($this->configSource); |
|
50 | } |
||
76 |