1 | <?php |
||
13 | class FlowForm |
||
14 | { |
||
15 | /** |
||
16 | * @var null |
||
17 | */ |
||
18 | public $flow = null; |
||
19 | |||
20 | /** |
||
21 | * @var |
||
22 | */ |
||
23 | public $module; |
||
24 | |||
25 | /** |
||
26 | * @var |
||
27 | */ |
||
28 | public $returnBaseUrl; |
||
29 | |||
30 | /** |
||
31 | * @param $module |
||
32 | * @return $this |
||
33 | */ |
||
34 | public function setModule($module) |
||
39 | |||
40 | /** |
||
41 | * @param $url |
||
42 | * @return $this |
||
43 | */ |
||
44 | public function setReturnBaseUrl($url) |
||
49 | |||
50 | /** |
||
51 | * @param $id |
||
52 | * @return $this |
||
53 | */ |
||
54 | public function setFlow($id) |
||
59 | |||
60 | /** |
||
61 | * @return string |
||
62 | */ |
||
63 | public function render() |
||
72 | } |
||
73 |
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.