1 | <?php |
||
9 | class MetaDataProvider |
||
10 | { |
||
11 | /** |
||
12 | * @var Configuration |
||
13 | */ |
||
14 | protected $configurationProvider; |
||
15 | /** |
||
16 | * @var ArrayService |
||
17 | */ |
||
18 | protected $arrayService; |
||
19 | |||
20 | public function __construct() |
||
25 | |||
26 | /** |
||
27 | * @param string $key |
||
28 | * @return array |
||
29 | */ |
||
30 | public function getMetaData($key) |
||
39 | |||
40 | /** |
||
41 | * @param array $array |
||
42 | * @param array $searchKeys |
||
43 | * @return array |
||
44 | */ |
||
45 | protected function buildData(array $array, array $searchKeys) |
||
55 | |||
56 | /** |
||
57 | * @param array $array |
||
58 | * @param array $searchKeys |
||
59 | * @return array |
||
60 | */ |
||
61 | protected function filter(array $array, array $searchKeys) |
||
73 | } |
||
74 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.