1 | <?php |
||
18 | class Delete implements Action |
||
19 | { |
||
20 | use ConstructorUrl, QueryBuilder; |
||
21 | |||
22 | protected $kernel; |
||
23 | protected $url = '?'; |
||
24 | /** |
||
25 | * Type of Request to delete |
||
26 | * @var string |
||
27 | */ |
||
28 | protected $HTTP_TYPE = 'DELETE'; |
||
29 | |||
30 | 3 | public function injectionKernel(KernelBpm $bpm) |
|
31 | { |
||
32 | 3 | $this->kernel = $bpm; |
|
33 | 3 | } |
|
34 | |||
35 | /** |
||
36 | * @return string |
||
37 | */ |
||
38 | 2 | public function getUrl() |
|
42 | |||
43 | /** |
||
44 | * @return \agoalofalife\bpm\Contracts\Handler |
||
45 | */ |
||
46 | 1 | public function processData() |
|
51 | |||
52 | 1 | private function query() |
|
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.