Total Complexity | 5 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | abstract class AbstractFilter |
||
18 | { |
||
19 | /** |
||
20 | * @param $key |
||
21 | * @param $arrayElement |
||
22 | * @return mixed |
||
23 | */ |
||
24 | protected static function getArrayElementValueFromKey($key, $arrayElement) |
||
29 | ); |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * @param $keysArray |
||
34 | * @param $arrayElement |
||
35 | * @return mixed |
||
36 | * @throws NotValidKeyElementInArrayException |
||
37 | */ |
||
38 | private static function getValueFromKeysArray($keysArray, $arrayElement) |
||
53 |