Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class ClearCommand extends Command |
||
14 | { |
||
15 | protected function configure() |
||
16 | { |
||
17 | parent::configure(); |
||
18 | $this->setName('router:clear'); |
||
19 | $this->setDescription('Remove the route cache'); |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * @inheritDoc |
||
24 | * @throws Exception |
||
25 | */ |
||
26 | protected function handle() |
||
37 | } |
||
38 | } |
||
39 |
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.