Completed
Push — master ( fc7027...e72ab1 )
by Philip
24:06
created
src/Command/AbstractUserCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      * @param InputInterface  $input
49 49
      * @param OutputInterface $output
50 50
      *
51
-     * @return mixed
51
+     * @return User
52 52
      */
53 53
     protected function createUser(InputInterface $input, OutputInterface $output)
54 54
     {
@@ -308,7 +308,7 @@  discard block
 block discarded – undo
308 308
     }
309 309
 
310 310
     /**
311
-     * @return User[]
311
+     * @return \Traversable
312 312
      */
313 313
     protected function findUsers()
314 314
     {
Please login to merge, or discard this patch.
tests/Acceptance/AccessRightsTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -328,7 +328,7 @@
 block discarded – undo
328 328
 
329 329
     /**
330 330
      * @param string $url            The url to test.
331
-     * @param null   $expectedStatus The expected status code. Null if login is expected.
331
+     * @param integer|null   $expectedStatus The expected status code. Null if login is expected.
332 332
      * @param User   $user           The user to test or null for anonymous.
333 333
      */
334 334
     protected function assertAccessRights(AbstractBrowser $client, $url, $expectedStatus = null, User $user = null)
Please login to merge, or discard this patch.