Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | protected function handle() |
||
30 | { |
||
31 | $seedRunner = new SeedRunner($this->getOutput()); |
||
32 | |||
33 | $seedRunner->run($this->argument('class')); |
||
1 ignored issue
–
show
|
|||
34 | } |
||
35 | } |
||
36 |
This check looks at variables that are passed out again to other methods.
If the outgoing method call has stricter type requirements than the method itself, an issue is raised.
An additional type check may prevent trouble.