1 | <?php |
||
10 | final class CommandApplication extends Application |
||
11 | { |
||
12 | /** |
||
13 | * @var CommandInterface |
||
14 | */ |
||
15 | private $command; |
||
16 | /** |
||
17 | * @param CommandInterface $command |
||
18 | */ |
||
19 | public function setCommand(CommandInterface $command) |
||
23 | |||
24 | public function doRun(InputInterface $input, OutputInterface $output) |
||
30 | |||
31 | } |
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.