Completed
Push — master ( 3df05c...731503 )
by John
11:36
created
src/Serializer/SerializerAdapter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
     /**
70 70
      * Deserializes data into the given type.
71 71
      *
72
-     * @param mixed                      $data
72
+     * @param string                      $data
73 73
      * @param string                     $type
74 74
      * @param string                     $format
75 75
      * @param SerializationContext|array $context
Please login to merge, or discard this patch.
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/Test/ApiTestCase.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -308,8 +308,8 @@
 block discarded – undo
308 308
     }
309 309
 
310 310
     /**
311
-     * @param mixed  $expected
312
-     * @param mixed  $actual
311
+     * @param integer  $expected
312
+     * @param integer  $actual
313 313
      * @param string $message
314 314
      *
315 315
      * @return mixed
Please login to merge, or discard this patch.
src/Document/OperationObject.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
     }
73 73
 
74 74
     /**
75
-     * @return object
75
+     * @return \stdClass
76 76
      */
77 77
     private function assembleRequestSchema()
78 78
     {
Please login to merge, or discard this patch.
src/Test/ApiTestClient.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
     /**
211 211
      * Returns the History instance.
212 212
      *
213
-     * @return History A History instance
213
+     * @return \Symfony\Component\BrowserKit\History A History instance
214 214
      *
215 215
      * @api
216 216
      */
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
     /**
223 223
      * Returns the CookieJar instance.
224 224
      *
225
-     * @return CookieJar A CookieJar instance
225
+     * @return \Symfony\Component\BrowserKit\CookieJar A CookieJar instance
226 226
      *
227 227
      * @api
228 228
      */
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
     /**
247 247
      * Returns the current BrowserKit Response instance.
248 248
      *
249
-     * @return Response|null A BrowserKit Response instance
249
+     * @return \Symfony\Component\BrowserKit\Response A BrowserKit Response instance
250 250
      *
251 251
      * @api
252 252
      */
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
     /**
276 276
      * Returns the current BrowserKit Request instance.
277 277
      *
278
-     * @return Request|null A BrowserKit Request instance
278
+     * @return Request A BrowserKit Request instance
279 279
      *
280 280
      * @api
281 281
      */
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
      * The origin request is the request instance that is sent
291 291
      * to the code that handles requests.
292 292
      *
293
-     * @return object|null A Request instance
293
+     * @return Request A Request instance
294 294
      *
295 295
      * @see doRequest()
296 296
      *
@@ -371,7 +371,7 @@  discard block
 block discarded – undo
371 371
      *
372 372
      * @param Request $request The BrowserKit Request to filter
373 373
      *
374
-     * @return object An origin request instance
374
+     * @return \Symfony\Component\HttpFoundation\Request An origin request instance
375 375
      */
376 376
     protected function filterRequest(Request $request)
377 377
     {
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
      *
384 384
      * @param object $response The origin response to filter
385 385
      *
386
-     * @return Response An BrowserKit Response instance
386
+     * @return \Symfony\Component\BrowserKit\Response An BrowserKit Response instance
387 387
      */
388 388
     protected function filterResponse($response)
389 389
     {
Please login to merge, or discard this patch.