Conditions | 5 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 5.0488 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
22 | 2 | public static function inContainer(): bool |
|
23 | { |
||
24 | 2 | if (file_exists(self::CGROUP_FILE) |
|
25 | 2 | && ($content = file_get_contents(self::CGROUP_FILE)) |
|
26 | 2 | && preg_match(self::CGROUP_PATTERN, $content)) { |
|
27 | return true; |
||
28 | } |
||
29 | 2 | if(isset($content)) { |
|
|
|||
30 | 2 | var_dump('Contents: ' . $content); |
|
31 | } |
||
32 | 2 | return false; |
|
33 | } |
||
35 |