Total Complexity | 5 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
7 | class Process extends BaseProcess |
||
8 | { |
||
9 | static $forceSigchildEnabledGlobally = null; |
||
10 | protected $forceSigchildEnabledIndividually = null; |
||
11 | |||
12 | public static function forceSigchildEnabled($force) |
||
13 | { |
||
14 | self::$forceSigchildEnabledGlobally = (bool) $force; |
||
15 | } |
||
16 | |||
17 | public function forceSigchildEnabledIndividually($force) |
||
20 | } |
||
21 | |||
22 | protected function isSigchildEnabled() |
||
35 |