1 | <?php |
||
8 | class ConcreteConfigurator extends AbstractAdminListConfigurator |
||
9 | { |
||
10 | /** |
||
11 | * @return string |
||
12 | */ |
||
13 | public function getBundleName() |
||
17 | |||
18 | /** |
||
19 | * @return string |
||
20 | */ |
||
21 | public function getEntityName() |
||
25 | |||
26 | /** |
||
27 | * @return mixed |
||
|
|||
28 | */ |
||
29 | public function buildFields() |
||
33 | |||
34 | /** |
||
35 | * @param array|object $item |
||
36 | * @return array |
||
37 | */ |
||
38 | public function getEditUrlFor($item) |
||
47 | |||
48 | /** |
||
49 | * @param array|object $item |
||
50 | * @return array |
||
51 | */ |
||
52 | public function getDeleteUrlFor($item) |
||
61 | |||
62 | /** |
||
63 | * @return int |
||
64 | */ |
||
65 | public function getCount() |
||
69 | |||
70 | /** |
||
71 | * @return mixed |
||
72 | */ |
||
73 | public function getItems() |
||
79 | |||
80 | /** |
||
81 | * @return Pagerfanta |
||
82 | */ |
||
83 | public function getPagerfanta() |
||
87 | |||
88 | /** |
||
89 | * @return mixed |
||
90 | */ |
||
91 | public function getIterator() |
||
95 | } |
||
96 |
This check looks for the generic type
array
as a return type and suggests a more specific type. This type is inferred from the actual code.