Passed
Pull Request — master (#21)
by Pavel
06:33
created
DependencyInjection/CrudsEntitiesConfigurator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -227,7 +227,7 @@
 block discarded – undo
227 227
      * @param string $actionName
228 228
      * @param string $path
229 229
      * @param string $action
230
-     * @param array  $methods
230
+     * @param string[]  $methods
231 231
      * @param array  $options
232 232
      *
233 233
      * @return Definition
Please login to merge, or discard this patch.
Tests/Unit/Controller/CountControllerTest.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,6 +49,9 @@  discard block
 block discarded – undo
49 49
         self::assertSame(3, $controller->countAction(['a' => [1, 2, 4]]));
50 50
     }
51 51
 
52
+    /**
53
+     * @param integer $a
54
+     */
52 55
     private function createFixture($a, $b, $c)
53 56
     {
54 57
         $entity    = new AbcClass();
@@ -60,7 +63,7 @@  discard block
 block discarded – undo
60 63
     }
61 64
 
62 65
     /**
63
-     * @return ReferenceProviderInterface|\PHPUnit_Framework_MockObject_MockObject
66
+     * @return \PHPUnit\Framework\MockObject\MockObject
64 67
      */
65 68
     private function getReferenceProvider()
66 69
     {
Please login to merge, or discard this patch.
Tests/Unit/Controller/SearchControllerTest.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,6 +96,9 @@  discard block
 block discarded – undo
96 96
         self::assertSame([$f1, $f2, $f3, $f4], $result->toArray());
97 97
     }
98 98
 
99
+    /**
100
+     * @param integer $a
101
+     */
99 102
     private function createFixture($a, $b, $c)
100 103
     {
101 104
         $entity    = new AbcClass();
@@ -107,7 +110,7 @@  discard block
 block discarded – undo
107 110
     }
108 111
 
109 112
     /**
110
-     * @return ReferenceProviderInterface|\PHPUnit_Framework_MockObject_MockObject
113
+     * @return \PHPUnit\Framework\MockObject\MockObject
111 114
      */
112 115
     private function getReferenceProvider()
113 116
     {
Please login to merge, or discard this patch.