Conditions | 4 |
Paths | 4 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
25 | public function fire() |
||
26 | { |
||
27 | if ($this->compound !== null) { |
||
28 | if (parent::fire() !== false) { |
||
29 | if ($this->option($this->compound)) { |
||
30 | $name = $this->argument('name'); |
||
31 | $this->call("hive:{$this->compound}", ['name' => $name]); |
||
32 | } |
||
33 | } |
||
34 | } else { |
||
35 | parent::fire(); |
||
36 | } |
||
37 | } |
||
38 | |||
46 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.