1 | <?php |
||
31 | abstract class CloudCommand extends Command |
||
32 | { |
||
33 | private $cloudManager; |
||
34 | |||
35 | 86 | public function __construct(CloudManagerInterface $cloudManager) |
|
41 | |||
42 | /** |
||
43 | * {@inheritDoc} |
||
44 | */ |
||
45 | 86 | protected function configure() |
|
55 | |||
56 | /** |
||
57 | * @return \Xabbuh\PandaClient\Api\CloudManager |
||
58 | */ |
||
59 | 67 | protected function getCloudManager() |
|
67 | |||
68 | /** |
||
69 | * Get the cloud to work on. |
||
70 | * |
||
71 | * @param \Symfony\Component\Console\Input\InputInterface $input |
||
72 | * |
||
73 | * @return \Xabbuh\PandaClient\Api\CloudInterface |
||
74 | */ |
||
75 | 67 | protected function getCloud(InputInterface $input) |
|
83 | |||
84 | /** |
||
85 | * Executes the actual command (to be implemented by subclasses, will be called automatically). |
||
86 | * |
||
87 | * @param InputInterface $input |
||
88 | * @param OutputInterface $output |
||
89 | */ |
||
90 | abstract protected function doExecuteCommand(InputInterface $input, OutputInterface $output); |
||
91 | |||
92 | /** |
||
93 | * {@inheritDoc} |
||
94 | */ |
||
95 | 69 | protected function execute(InputInterface $input, OutputInterface $output) |
|
107 | } |
||
108 |
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.