1 | <?php |
||
13 | class CommandHelper |
||
14 | { |
||
15 | const OUTPUT_LEVEL_SPACE = ' '; |
||
16 | |||
17 | /** @var InputInterface */ |
||
18 | private $input; |
||
19 | /** @var OutputInterface */ |
||
20 | private $output; |
||
21 | /** @var QuestionHelper */ |
||
22 | private $questionHelper; |
||
23 | /** @var TemplateHelper */ |
||
24 | private $templateHelper; |
||
25 | /** @var Template[] */ |
||
26 | private $templateList; |
||
27 | |||
28 | /** |
||
29 | * @param InputInterface $input |
||
30 | * @param OutputInterface $output |
||
31 | * @param TemplateHelper $templateHelper |
||
32 | * @param QuestionHelper $questionHelper |
||
33 | * @param Template[] $templateList |
||
34 | */ |
||
35 | public function __construct( |
||
50 | |||
51 | /** |
||
52 | * @return Template[] |
||
53 | */ |
||
54 | public function getTemplateList() |
||
58 | |||
59 | /** |
||
60 | * @param Template $template |
||
61 | * @param string $currentType |
||
62 | */ |
||
63 | public function displayHeader(Template $template, $currentType) |
||
77 | |||
78 | /** |
||
79 | * @param string $message |
||
80 | * @param int $level |
||
81 | */ |
||
82 | public function display($message, $level = 0, $ln = true) |
||
95 | |||
96 | /** |
||
97 | * @param Template $template |
||
98 | * |
||
99 | * @return string |
||
100 | */ |
||
101 | public function resolveCurrentType(Template $template) |
||
107 | |||
108 | /** |
||
109 | * @param Question $question |
||
110 | * |
||
111 | * @return string |
||
112 | */ |
||
113 | public function ask(Question $question) |
||
117 | |||
118 | /** |
||
119 | * @param Template $template |
||
120 | */ |
||
121 | public function dump(Template $template) |
||
129 | } |
||
130 |
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.