Completed
Push — master ( 4dc3b9...fb244a )
by John
09:13 queued 07:03
created
tests/unit/EventListener/Request/RequestProcessorTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -303,7 +303,7 @@
 block discarded – undo
303 303
         {
304 304
             /**
305 305
              * @param array $attributes
306
-             * @param array $content
306
+             * @param string $content
307 307
              */
308 308
             public function __construct(array $attributes, $content)
309 309
             {
Please login to merge, or discard this patch.
src/Security/RbacRequestVoter.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -102,6 +102,7 @@
 block discarded – undo
102 102
 
103 103
     /**
104 104
      * {@inheritdoc}
105
+     * @param string $class
105 106
      */
106 107
     public function supportsClass($class)
107 108
     {
Please login to merge, or discard this patch.
tests/unit/Security/RbacRequestVoterTest.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -171,7 +171,6 @@  discard block
 block discarded – undo
171 171
     /**
172 172
      * @param array  $attributes
173 173
      *
174
-     * @param string $content
175 174
      *
176 175
      * @return Request
177 176
      */
@@ -181,7 +180,6 @@  discard block
 block discarded – undo
181 180
         {
182 181
             /**
183 182
              * @param array $attributes
184
-             * @param array $content
185 183
              */
186 184
             public function __construct(array $attributes)
187 185
             {
Please login to merge, or discard this patch.
src/Test/ApiTestClient.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
      * The origin response is the response instance that is returned
267 267
      * by the code that handles requests.
268 268
      *
269
-     * @return object|null A response instance
269
+     * @return Response|null A response instance
270 270
      *
271 271
      * @see doRequest()
272 272
      *
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
      * The origin request is the request instance that is sent
296 296
      * to the code that handles requests.
297 297
      *
298
-     * @return object|null A Request instance
298
+     * @return Request|null A Request instance
299 299
      *
300 300
      * @see doRequest()
301 301
      *
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
      *
377 377
      * @param BrowserKitRequest $request The BrowserKit Request to filter
378 378
      *
379
-     * @return object An origin request instance
379
+     * @return Request An origin request instance
380 380
      */
381 381
     protected function filterRequest(BrowserKitRequest $request)
382 382
     {
Please login to merge, or discard this patch.
tests/unit/EventListener/Response/ResponseFactoryTest.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
 
71 71
     /**
72
-     * @param array $statusCodes
72
+     * @param integer[] $statusCodes
73 73
      * @param mixed $data
74 74
      *
75 75
      * @param bool  $useValidator
Please login to merge, or discard this patch.