| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 5 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 31 | public function process() |
||
| 32 | { |
||
| 33 | $this->processManager->fork(function(Process $process) { |
||
|
|
|||
| 34 | $this->extractor->extract(); |
||
| 35 | }); |
||
| 36 | |||
| 37 | $this->processManager->fork(function(Process $process) { |
||
| 38 | $this->transformer->transform(); |
||
| 39 | }); |
||
| 40 | |||
| 41 | $this->processManager->fork(function(Process $process) { |
||
| 42 | $this->loader->load(); |
||
| 43 | }); |
||
| 44 | |||
| 45 | $this->processManager->wait(); |
||
| 46 | } |
||
| 47 | } |
||
| 48 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.