Completed
Pull Request — master (#80)
by John
03:11
created
src/Tests/Functional/PetStore/Controller/UserController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      * @param string $username
18 18
      * @param string $password
19 19
      *
20
-     * @return array
20
+     * @return string
21 21
      */
22 22
     public function loginUser($username, $password)
23 23
     {
Please login to merge, or discard this patch.
src/Routing/SwaggerRouteLoader.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     /**
42 42
      * @SuppressWarnings(PHPMD.UnusedFormalParameter)
43 43
      *
44
-     * @param mixed  $resource
44
+     * @param string  $resource
45 45
      * @param string $type
46 46
      *
47 47
      * @return bool
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     /**
55 55
      * @SuppressWarnings(PHPMD.UnusedFormalParameter)
56 56
      *
57
-     * @param mixed $resource
57
+     * @param string $resource
58 58
      * @param null  $type
59 59
      *
60 60
      * @return RouteCollection
Please login to merge, or discard this patch.
src/Test/ApiTestClient.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
     /**
210 210
      * Returns the History instance.
211 211
      *
212
-     * @return History A History instance
212
+     * @return \Symfony\Component\BrowserKit\History A History instance
213 213
      *
214 214
      * @api
215 215
      */
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
     /**
222 222
      * Returns the CookieJar instance.
223 223
      *
224
-     * @return CookieJar A CookieJar instance
224
+     * @return \Symfony\Component\BrowserKit\CookieJar A CookieJar instance
225 225
      *
226 226
      * @api
227 227
      */
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
     /**
246 246
      * Returns the current BrowserKit Response instance.
247 247
      *
248
-     * @return Response|null A BrowserKit Response instance
248
+     * @return \Symfony\Component\BrowserKit\Response|null A BrowserKit Response instance
249 249
      *
250 250
      * @api
251 251
      */
@@ -370,7 +370,7 @@  discard block
 block discarded – undo
370 370
      *
371 371
      * @param Request $request The BrowserKit Request to filter
372 372
      *
373
-     * @return object An origin request instance
373
+     * @return \Symfony\Component\HttpFoundation\Request An origin request instance
374 374
      */
375 375
     protected function filterRequest(Request $request)
376 376
     {
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
      *
383 383
      * @param object $response The origin response to filter
384 384
      *
385
-     * @return Response An BrowserKit Response instance
385
+     * @return \Symfony\Component\BrowserKit\Response An BrowserKit Response instance
386 386
      */
387 387
     protected function filterResponse($response)
388 388
     {
Please login to merge, or discard this patch.
src/Tests/Serialize/Serializer/Stubs/Bar.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -31,6 +31,7 @@
 block discarded – undo
31 31
      * @param float $b
32 32
      * @param Meh   $meh
33 33
      * @param Meh[] ...$mehs
34
+     * @param Meh $mehs
34 35
      */
35 36
     public function __construct(float $b, Meh $meh, Meh ...$mehs)
36 37
     {
Please login to merge, or discard this patch.