| 1 | <?php |
||
| 11 | final class CommandAdapter |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var Command |
||
| 15 | */ |
||
| 16 | private $command; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param Command $command |
||
| 20 | */ |
||
| 21 | 1 | public function __construct(Command $command) |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @param InputInterface $input |
||
| 28 | * @param OutputInterface $output |
||
| 29 | * |
||
| 30 | * @return int|null |
||
| 31 | */ |
||
| 32 | 1 | public function __invoke(InputInterface $input, OutputInterface $output) |
|
| 44 | } |
||
| 45 |
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.