Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | public function __construct( |
||
19 | QueuedExtractor $extractor, |
||
20 | QueuedTransformer $transformer, |
||
21 | QueuedLoader $loader, |
||
22 | ProcessManager $processManager |
||
23 | ) |
||
24 | { |
||
25 | $this->extractor = $extractor; |
||
26 | $this->transformer = $transformer; |
||
27 | $this->loader = $loader; |
||
28 | $this->processManager = $processManager; |
||
29 | } |
||
30 | |||
48 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.