| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | 6 | public function filter(array $parameters) |
|
| 17 | { |
||
| 18 | 6 | $parameters = array_change_key_case($parameters, CASE_UPPER); |
|
| 19 | 6 | array_walk($parameters, 'trim'); |
|
| 20 | 6 | $parameters = array_filter($parameters, function ($value) { |
|
| 21 | 6 | return (bool) strlen($value); |
|
| 22 | |||
| 23 | 6 | }); |
|
| 24 | |||
| 25 | 6 | return $parameters; |
|
| 26 | } |
||
| 27 | } |
||
| 28 |