Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
22 | protected function isSigchildEnabled() |
||
23 | { |
||
24 | if (null !== $this->forceSigchildEnabledIndividually) { |
||
25 | return $this->forceSigchildEnabledIndividually; |
||
26 | } |
||
27 | |||
28 | if (null !== self::$forceSigchildEnabledGlobally) { |
||
29 | return self::$forceSigchildEnabledGlobally; |
||
30 | } |
||
31 | |||
32 | return parent::isSigchildEnabled(); |
||
33 | } |
||
35 |