| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | 9 | public function detect($path) |
|
| 11 | { |
||
| 12 | 9 | if (file_exists($path . '/concrete/config/concrete.php')) { |
|
| 13 | 6 | $data = @include $path . '/concrete/config/concrete.php'; |
|
| 14 | 6 | if (isset($data['version'])) { |
|
| 15 | 3 | return (new Site())->setPath($path)->setVersion($data['version']); |
|
| 16 | } |
||
| 17 | 2 | } |
|
| 18 | |||
| 19 | 6 | return null; |
|
| 20 | } |
||
| 21 | } |
||
| 22 |