Jared Boone
Results
2
issues of
Jared Boone
If a worker process dies for some reason then after the timeout interval Daemon::__destruct() calls teardown() on a null object. The result is _PHP Fatal error: Call to a member...
Bug: This foreach loop in Daemon::__destruct() does not behave as expected: ``` foreach($this->workers + $this->plugins as $object) { $this->{$object}->teardown(); unset($this->{$object}); } ``` The '+' operator performs an array union using...