1 | <?php |
||
19 | class Update implements Action, ActionGet, ActionSet |
||
20 | { |
||
21 | use ConstructorUrl, QueryBuilder; |
||
22 | |||
23 | protected $url = '?'; |
||
24 | |||
25 | /** |
||
26 | * Request type to created |
||
27 | * @var string |
||
28 | */ |
||
29 | protected $HTTP_TYPE = 'PUT'; |
||
30 | protected $data = []; |
||
31 | protected $kernel; |
||
32 | |||
33 | /** |
||
34 | * @param KernelBpm $bpm |
||
35 | * @return void |
||
36 | */ |
||
37 | public function injectionKernel(KernelBpm $bpm) |
||
41 | |||
42 | /** |
||
43 | * @return string |
||
44 | */ |
||
45 | 2 | public function getUrl() |
|
49 | |||
50 | /** |
||
51 | * @param array $data |
||
52 | * @return array |
||
53 | */ |
||
54 | 2 | public function setData(array $data) |
|
58 | |||
59 | /** |
||
60 | * @return \agoalofalife\bpm\Contracts\Handler |
||
61 | */ |
||
62 | public function processData() |
||
67 | |||
68 | /** |
||
69 | * @return array |
||
70 | */ |
||
71 | 1 | public function getData() |
|
75 | |||
76 | /** |
||
77 | * @return mixed |
||
78 | */ |
||
79 | private function query() |
||
98 | |||
99 | } |
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.