@@ -29,7 +29,7 @@ |
||
29 | 29 | private $template; |
30 | 30 | |
31 | 31 | /** |
32 | - * @param array $url The url path and parameters |
|
32 | + * @param string[] $url The url path and parameters |
|
33 | 33 | * @param string $label The label |
34 | 34 | * @param string $icon The icon |
35 | 35 | * @param string $template The template |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | /** |
60 | 60 | * Return the url to edit the given $item |
61 | 61 | * |
62 | - * @param object $item |
|
62 | + * @param \Kunstmaan\LeadGenerationBundle\Tests\Entity\Popup\Popup $item |
|
63 | 63 | * |
64 | 64 | * @return array |
65 | 65 | */ |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | /** |
78 | 78 | * Get the delete url for the given $item |
79 | 79 | * |
80 | - * @param object $item |
|
80 | + * @param \Kunstmaan\LeadGenerationBundle\Tests\Entity\Popup\Popup $item |
|
81 | 81 | * |
82 | 82 | * @return array |
83 | 83 | */ |
@@ -103,6 +103,9 @@ discard block |
||
103 | 103 | return true; |
104 | 104 | } |
105 | 105 | |
106 | + /** |
|
107 | + * @param \stdClass $item |
|
108 | + */ |
|
106 | 109 | public function getAliasObj($item) |
107 | 110 | { |
108 | 111 | $relation = $this->alias->getRelation(); |
@@ -115,6 +118,9 @@ discard block |
||
115 | 118 | return $item; |
116 | 119 | } |
117 | 120 | |
121 | + /** |
|
122 | + * @param string $column |
|
123 | + */ |
|
118 | 124 | public function getColumnName($column) |
119 | 125 | { |
120 | 126 | $abbr = $this->alias->getAbbr().'.'; |
@@ -9,8 +9,8 @@ |
||
9 | 9 | { |
10 | 10 | /** |
11 | 11 | * FieldAlias constructor. |
12 | - * @param $abbr string |
|
13 | - * @param $relation string |
|
12 | + * @param string $abbr string |
|
13 | + * @param string $relation string |
|
14 | 14 | */ |
15 | 15 | public function __construct($abbr, $relation) |
16 | 16 | { |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | } |
61 | 61 | |
62 | 62 | /** |
63 | - * @param mixed $item |
|
63 | + * @param \stdClass $item |
|
64 | 64 | * |
65 | 65 | * @return string |
66 | 66 | */ |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | } |
71 | 71 | |
72 | 72 | /** |
73 | - * @param mixed $item |
|
73 | + * @param \stdClass $item |
|
74 | 74 | * |
75 | 75 | * @return string |
76 | 76 | */ |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | } |
25 | 25 | |
26 | 26 | /** |
27 | - * @return mixed |
|
27 | + * @return boolean |
|
28 | 28 | */ |
29 | 29 | public function buildFields() |
30 | 30 | { |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | } |
79 | 79 | |
80 | 80 | /** |
81 | - * @return Pagerfanta |
|
81 | + * @return string |
|
82 | 82 | */ |
83 | 83 | public function getPagerfanta() |
84 | 84 | { |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | } |
87 | 87 | |
88 | 88 | /** |
89 | - * @return mixed |
|
89 | + * @return ArrayIterator |
|
90 | 90 | */ |
91 | 91 | public function getIterator() |
92 | 92 | { |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | class DBAL extends AbstractDoctrineDBALAdminListConfigurator implements SortableInterface |
22 | 22 | { |
23 | 23 | /** |
24 | - * @return mixed |
|
24 | + * @return string |
|
25 | 25 | */ |
26 | 26 | public function getBundleName() |
27 | 27 | { |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
32 | - * @return mixed |
|
32 | + * @return string |
|
33 | 33 | */ |
34 | 34 | public function getEntityName() |
35 | 35 | { |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | } |
38 | 38 | |
39 | 39 | /** |
40 | - * @return mixed |
|
40 | + * @return boolean |
|
41 | 41 | */ |
42 | 42 | public function buildFields() |
43 | 43 | { |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | class ORM extends AbstractDoctrineORMAdminListConfigurator implements SortableInterface |
27 | 27 | { |
28 | 28 | /** |
29 | - * @return mixed |
|
29 | + * @return string |
|
30 | 30 | */ |
31 | 31 | public function getBundleName() |
32 | 32 | { |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | } |
35 | 35 | |
36 | 36 | /** |
37 | - * @return mixed |
|
37 | + * @return string |
|
38 | 38 | */ |
39 | 39 | public function getEntityName() |
40 | 40 | { |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | } |
43 | 43 | |
44 | 44 | /** |
45 | - * @return mixed |
|
45 | + * @return boolean |
|
46 | 46 | */ |
47 | 47 | public function buildFields() |
48 | 48 | { |
@@ -12,7 +12,7 @@ |
||
12 | 12 | class KunstmaanAdminListExtensionTest extends AbstractPrependableExtensionTestCase |
13 | 13 | { |
14 | 14 | /** |
15 | - * @return ExtensionInterface[] |
|
15 | + * @return KunstmaanAdminListExtension[] |
|
16 | 16 | */ |
17 | 17 | protected function getContainerExtensions() |
18 | 18 | { |