@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | } |
87 | 87 | |
88 | 88 | /** |
89 | - * @return Questionhelper |
|
89 | + * @return QuestionHelper |
|
90 | 90 | */ |
91 | 91 | private function getQuestionHelper() |
92 | 92 | { |
@@ -119,6 +119,10 @@ discard block |
||
119 | 119 | } |
120 | 120 | } |
121 | 121 | |
122 | + /** |
|
123 | + * @param string $question |
|
124 | + * @param \Closure $validator |
|
125 | + */ |
|
122 | 126 | public function askAndValidate( |
123 | 127 | $question, |
124 | 128 | $validator, |
@@ -139,6 +143,10 @@ discard block |
||
139 | 143 | ); |
140 | 144 | } |
141 | 145 | |
146 | + /** |
|
147 | + * @param string $question |
|
148 | + * @param string $defaultString |
|
149 | + */ |
|
142 | 150 | public function askConfirmation( |
143 | 151 | $question, |
144 | 152 | $defaultString, |
@@ -160,6 +168,10 @@ discard block |
||
160 | 168 | ); |
161 | 169 | } |
162 | 170 | |
171 | + /** |
|
172 | + * @param string $question |
|
173 | + * @param string $default |
|
174 | + */ |
|
163 | 175 | public function ask($question, $default = null, array $autoComplete = null) |
164 | 176 | { |
165 | 177 | $askQuestion = new Question( |
@@ -174,6 +186,9 @@ discard block |
||
174 | 186 | ); |
175 | 187 | } |
176 | 188 | |
189 | + /** |
|
190 | + * @param string $question |
|
191 | + */ |
|
177 | 192 | public function askSelect( |
178 | 193 | $question, |
179 | 194 | $choices, |
@@ -212,6 +227,10 @@ discard block |
||
212 | 227 | } |
213 | 228 | } |
214 | 229 | |
230 | + /** |
|
231 | + * @param string $name |
|
232 | + * @param null|string $value |
|
233 | + */ |
|
215 | 234 | public function setOption($name, $value) |
216 | 235 | { |
217 | 236 | $this->input->setOption($name, $value); |
@@ -222,6 +241,9 @@ discard block |
||
222 | 241 | return $this->input->hasOption($name); |
223 | 242 | } |
224 | 243 | |
244 | + /** |
|
245 | + * @param string $name |
|
246 | + */ |
|
225 | 247 | public function getOption($name) |
226 | 248 | { |
227 | 249 | return $this->input->getOption($name); |
@@ -232,6 +254,10 @@ discard block |
||
232 | 254 | return $this->input->isInteractive(); |
233 | 255 | } |
234 | 256 | |
257 | + /** |
|
258 | + * @param string $option |
|
259 | + * @param false $default |
|
260 | + */ |
|
235 | 261 | public function getOptionOrDefault($option, $default = null) |
236 | 262 | { |
237 | 263 | return $this->input->hasOption($option) ? $this->input->getOption( |
@@ -26,8 +26,8 @@ discard block |
||
26 | 26 | '; |
27 | 27 | |
28 | 28 | /** |
29 | - * @param string $entityClassName |
|
30 | - * @param string $repositoryClassName |
|
29 | + * @param string $entityClass |
|
30 | + * @param string $repositoryClass |
|
31 | 31 | * |
32 | 32 | * @return string |
33 | 33 | */ |
@@ -44,8 +44,9 @@ discard block |
||
44 | 44 | } |
45 | 45 | |
46 | 46 | /** |
47 | - * @param string $fullClassName |
|
48 | 47 | * @param string $outputDirectory |
48 | + * @param string $entityClass |
|
49 | + * @param string $repositoryClass |
|
49 | 50 | */ |
50 | 51 | public function writeEntityRepositoryClass($entityClass, $repositoryClass, $outputDirectory) |
51 | 52 | { |
@@ -14,7 +14,7 @@ |
||
14 | 14 | class MaxNumberByIpEventListenerTest extends TestCase |
15 | 15 | { |
16 | 16 | /** |
17 | - * @param $returnNull |
|
17 | + * @param boolean $returnNull |
|
18 | 18 | * @param int $voteNumber |
19 | 19 | * |
20 | 20 | * @return \Kunstmaan\VotingBundle\Services\RepositoryResolver |
@@ -22,7 +22,7 @@ |
||
22 | 22 | private $em; |
23 | 23 | |
24 | 24 | /** |
25 | - * @return \PHPUnit_Framework_MockObject_MockObject |
|
25 | + * @return \Doctrine\ORM\EntityManagerInterface |
|
26 | 26 | */ |
27 | 27 | private function getEm() |
28 | 28 | { |
@@ -19,6 +19,11 @@ discard block |
||
19 | 19 | /** @var EntityRepository */ |
20 | 20 | private $repo; |
21 | 21 | |
22 | + /** |
|
23 | + * @param string $locale |
|
24 | + * @param string $permission |
|
25 | + * @param \PHPUnit\Framework\MockObject\MockObject $repo |
|
26 | + */ |
|
22 | 27 | public function __construct(EntityManager $em, AclHelper $aclHelper, $locale, $permission, $repo) |
23 | 28 | { |
24 | 29 | parent::__construct($em, $aclHelper, $locale, $permission); |
@@ -26,7 +31,7 @@ discard block |
||
26 | 31 | } |
27 | 32 | |
28 | 33 | /** |
29 | - * @return bool |
|
34 | + * @return EntityRepository |
|
30 | 35 | */ |
31 | 36 | public function getOverviewPageRepository() |
32 | 37 | { |
@@ -78,7 +78,7 @@ |
||
78 | 78 | * @param string $password The plain password |
79 | 79 | * @param string $email The email of the user |
80 | 80 | * @param string $locale The locale (language) of the user |
81 | - * @param array $roles The roles the user has |
|
81 | + * @param string[] $roles The roles the user has |
|
82 | 82 | * @param array $groups The groups the user belongs to |
83 | 83 | * @param bool $enabled Enable login for the user |
84 | 84 | * @param bool $changed Disable password changed for the user |
@@ -137,6 +137,11 @@ |
||
137 | 137 | $this->assertEquals(10, $this->object->getWeight()); |
138 | 138 | } |
139 | 139 | |
140 | + /** |
|
141 | + * @param string $lang |
|
142 | + * @param string $title |
|
143 | + * @param string $slug |
|
144 | + */ |
|
140 | 145 | private function getNodeWithTranslation($lang, $title, $slug, $nodeId = null) |
141 | 146 | { |
142 | 147 | $node = new Node(); |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | } |
115 | 115 | |
116 | 116 | /** |
117 | - * @param mixed $item |
|
117 | + * @param \stdClass $item |
|
118 | 118 | * |
119 | 119 | * @return bool |
120 | 120 | */ |
@@ -131,6 +131,9 @@ discard block |
||
131 | 131 | return $this->configurator->canAdd(); |
132 | 132 | } |
133 | 133 | |
134 | + /** |
|
135 | + * @param \stdClass $item |
|
136 | + */ |
|
134 | 137 | public function canView($item) |
135 | 138 | { |
136 | 139 | return $this->configurator->canView($item); |
@@ -145,7 +148,7 @@ discard block |
||
145 | 148 | } |
146 | 149 | |
147 | 150 | /** |
148 | - * @param mixed $item |
|
151 | + * @param \stdClass $item |
|
149 | 152 | * |
150 | 153 | * @return array |
151 | 154 | */ |
@@ -154,13 +157,16 @@ discard block |
||
154 | 157 | return $this->configurator->getEditUrlFor($item); |
155 | 158 | } |
156 | 159 | |
160 | + /** |
|
161 | + * @param \stdClass $item |
|
162 | + */ |
|
157 | 163 | public function getViewUrlFor($item) |
158 | 164 | { |
159 | 165 | return $this->configurator->getViewUrlFor($item); |
160 | 166 | } |
161 | 167 | |
162 | 168 | /** |
163 | - * @param mixed $item |
|
169 | + * @param \stdClass $item |
|
164 | 170 | * |
165 | 171 | * @return array |
166 | 172 | */ |
@@ -180,7 +186,7 @@ discard block |
||
180 | 186 | } |
181 | 187 | |
182 | 188 | /** |
183 | - * @param mixed $item |
|
189 | + * @param \stdClass $item |
|
184 | 190 | * |
185 | 191 | * @return bool |
186 | 192 | */ |
@@ -206,7 +212,7 @@ discard block |
||
206 | 212 | } |
207 | 213 | |
208 | 214 | /** |
209 | - * @param object|array $object The object |
|
215 | + * @param \stdClass $object The object |
|
210 | 216 | * @param string $attribute The attribute |
211 | 217 | * |
212 | 218 | * @return mixed |
@@ -217,7 +223,7 @@ discard block |
||
217 | 223 | } |
218 | 224 | |
219 | 225 | /** |
220 | - * @param object|array $object The object |
|
226 | + * @param \stdClass $object The object |
|
221 | 227 | * @param string $attribute The attribute |
222 | 228 | * |
223 | 229 | * @return string |
@@ -244,7 +250,7 @@ discard block |
||
244 | 250 | } |
245 | 251 | |
246 | 252 | /** |
247 | - * @return array |
|
253 | + * @return ItemAction\ItemActionInterface[] |
|
248 | 254 | */ |
249 | 255 | public function getItemActions() |
250 | 256 | { |
@@ -268,7 +274,7 @@ discard block |
||
268 | 274 | } |
269 | 275 | |
270 | 276 | /** |
271 | - * @return array |
|
277 | + * @return ListAction\ListActionInterface[] |
|
272 | 278 | */ |
273 | 279 | public function getListActions() |
274 | 280 | { |
@@ -276,7 +282,7 @@ discard block |
||
276 | 282 | } |
277 | 283 | |
278 | 284 | /** |
279 | - * @return array |
|
285 | + * @return BulkAction\BulkActionInterface[] |
|
280 | 286 | */ |
281 | 287 | public function getBulkActions() |
282 | 288 | { |
@@ -36,7 +36,7 @@ |
||
36 | 36 | /** |
37 | 37 | * @param array|null $methods |
38 | 38 | * |
39 | - * @return \PHPUnit\Framework\MockObject\MockObject|VersionChecker |
|
39 | + * @return string |
|
40 | 40 | */ |
41 | 41 | public function setUpVersionCheckerMock(?array $methods) |
42 | 42 | { |