1 | <?php |
||
21 | class Read implements Action, ActionGet |
||
22 | { |
||
23 | use ConstructorUrl, QueryBuilder; |
||
24 | |||
25 | protected $kernel; |
||
26 | |||
27 | /** |
||
28 | * Type HTTP_TYPE select |
||
29 | * @var string |
||
30 | */ |
||
31 | protected $HTTP_TYPE = 'GET'; |
||
32 | |||
33 | protected $url = '?'; |
||
34 | |||
35 | /** |
||
36 | * @param KernelBpm $bpm |
||
37 | * @return void |
||
38 | */ |
||
39 | 1 | public function injectionKernel(KernelBpm $bpm) |
|
43 | |||
44 | /** |
||
45 | * @return string url |
||
46 | */ |
||
47 | 6 | public function getUrl() |
|
51 | |||
52 | /** |
||
53 | * @return Handler |
||
54 | */ |
||
55 | 1 | public function processData() |
|
60 | |||
61 | 1 | public function getData() |
|
65 | |||
66 | /** |
||
67 | * Request the type of filter |
||
68 | * Design filterConstructor allows you to build logical expressions the conditions selecting the desired object . |
||
69 | * Expressions filterConstructor can be used to reference the properties and literals , |
||
70 | * as well as strings, numbers and Boolean expressions (true, false). |
||
71 | * Expressions $ filter supports arithmetic , logical operations , and operations groups , |
||
72 | * strings , date and time of the operation. |
||
73 | * @documentation |
||
74 | * @param $strRequest |
||
75 | * @return $this |
||
76 | */ |
||
77 | 1 | public function filterConstructor($strRequest) |
|
84 | |||
85 | /** |
||
86 | * Service resources can be obtained in the form of sort . |
||
87 | * asc ascending |
||
88 | * desc descending |
||
89 | * @param string $whatSort |
||
90 | * @param string $param asc | desc |
||
91 | * @return $this |
||
92 | * @throws \Exception |
||
93 | */ |
||
94 | 2 | public function orderBy($whatSort, $param = 'asc') |
|
109 | |||
110 | /** |
||
111 | * In bpm'online support the use of parameter $ the skip , |
||
112 | * which allows you to query the service resources , |
||
113 | * skipping the specified number of entries. |
||
114 | * @param $skip |
||
115 | * @return $this |
||
116 | */ |
||
117 | 2 | public function skip($skip) |
|
125 | |||
126 | /** |
||
127 | * Restrictions in the sample query |
||
128 | * If you want the request to return more than 40 records at a time, it can be implemented using the parameter $ top |
||
129 | * @param $amountMax |
||
130 | * @return $this |
||
131 | */ |
||
132 | 2 | public function amount($amountMax = null) |
|
139 | |||
140 | /** |
||
141 | * TODO Requires refactoring of this method |
||
142 | * @return void |
||
143 | */ |
||
144 | 1 | private function query() |
|
163 | } |
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.