Completed
Branch master (8796f9)
by MediaMonks
06:52
created
src/Response/ResponseTransformerInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -17,6 +17,7 @@
 block discarded – undo
17 17
     /**
18 18
      * @param Request $request
19 19
      * @param Response $response
20
+     * @return void
20 21
      */
21 22
     public function transformLate(Request $request, Response $response);
22 23
 
Please login to merge, or discard this patch.
src/Serializer/SerializerTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 trait SerializerTrait
6 6
 {
7 7
     /**
8
-     * @param $format
8
+     * @param string $format
9 9
      * @return bool
10 10
      */
11 11
     public function supportsFormat($format)
Please login to merge, or discard this patch.
tests/src/EventSubscriber/IOEventSubscriberTest.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -9,6 +9,9 @@  discard block
 block discarded – undo
9 9
 
10 10
 class IOEventSubscriberTest extends \PHPUnit_Framework_TestCase
11 11
 {
12
+    /**
13
+     * @param m\MockInterface[] $mocks
14
+     */
12 15
     protected function getSubject($mocks = null)
13 16
     {
14 17
         list($matcher, $requestTransformer, $responseTransformer) = $mocks ?: $this->getMocks();
@@ -282,6 +285,9 @@  discard block
 block discarded – undo
282 285
         }
283 286
     }
284 287
 
288
+    /**
289
+     * @param string $method
290
+     */
285 291
     protected function methodIsBound($method, $testEvent)
286 292
     {
287 293
         foreach (IOEventSubscriber::getSubscribedEvents() as $event => $listeners) {
Please login to merge, or discard this patch.
tests/src/Response/ResponseTransformerTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -292,6 +292,9 @@
 block discarded – undo
292 292
         });
293 293
     }
294 294
 
295
+    /**
296
+     * @param \Closure $callback
297
+     */
295 298
     protected function assertNoException($callback)
296 299
     {
297 300
         try {
Please login to merge, or discard this patch.