1 | <?php |
||
7 | trait QueryStringParserTrait |
||
8 | { |
||
9 | /** |
||
10 | * @var integer |
||
11 | */ |
||
12 | protected $param = 0; |
||
13 | |||
14 | /** |
||
15 | * Parse HTTP query string and return array representation |
||
16 | * to be attached to a database query. |
||
17 | * |
||
18 | * @param string $query |
||
19 | * |
||
20 | * @return array |
||
21 | */ |
||
22 | 16 | public function parseQueryString($query) |
|
41 | |||
42 | /** |
||
43 | * Map the parsed query string in to correct array structure. |
||
44 | * |
||
45 | * @param string $key |
||
46 | * @param mixed $value |
||
47 | * |
||
48 | * @return array|boolean |
||
49 | */ |
||
50 | 15 | protected function filterQueryParams($key, $value) |
|
72 | |||
73 | /** |
||
74 | * Map sorts to a usable format. |
||
75 | * |
||
76 | * @param string $value |
||
77 | * |
||
78 | * @return array |
||
79 | */ |
||
80 | 5 | protected function parseSort($value) |
|
101 | |||
102 | /** |
||
103 | * Map search to a usable format. |
||
104 | * |
||
105 | * @param string $value |
||
106 | * |
||
107 | * @return array |
||
108 | */ |
||
109 | 4 | protected function parseSearch($value) |
|
124 | |||
125 | /** |
||
126 | * Map filters in to useable array. |
||
127 | * |
||
128 | * @param array $filters |
||
129 | * |
||
130 | * @return array |
||
131 | */ |
||
132 | 10 | protected function parseFilters(array $filters) |
|
144 | |||
145 | /** |
||
146 | * Parse an individual filter. |
||
147 | * |
||
148 | * @param string $filter |
||
149 | * |
||
150 | * @return array |
||
151 | */ |
||
152 | 10 | protected function parseFilter($filter) |
|
176 | |||
177 | /** |
||
178 | * Map includes in to useable array. |
||
179 | * |
||
180 | * @param array $filters |
||
|
|||
181 | * |
||
182 | * @return array |
||
183 | */ |
||
184 | protected function parseInclude(array $includes) |
||
219 | } |
||
220 |
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function.
Consider the following example. The parameter
$italy
is not defined by the methodfinale(...)
.The most likely cause is that the parameter was removed, but the annotation was not.