| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 2 |
| Changes | 2 | ||
| Bugs | 0 | Features | 2 |
| 1 | <?php |
||
| 27 | 3 | public function execute(Process $process) |
|
| 28 | { |
||
| 29 | 3 | Utils::checkOverwriteRunMethod(get_class($process)); |
|
| 30 | |||
| 31 | 3 | if ($this->aliveCount() < $this->max) { |
|
| 32 | 3 | $process->start(); |
|
| 33 | 3 | } |
|
| 34 | 3 | array_push($this->processes, $process); |
|
| 35 | 3 | } |
|
| 36 | |||
| 62 | } |
||
|
1 ignored issue
–
show
|