Test Failed
Pull Request — master (#19)
by Pavel
10:42
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
@@ -48,6 +48,9 @@  discard block
 block discarded – undo
48 48
         self::assertSame(3, $controller->countAction(['a' => [1, 2, 4]]));
49 49
     }
50 50
 
51
+    /**
52
+     * @param integer $a
53
+     */
51 54
     private function createFixture($a, $b, $c)
52 55
     {
53 56
         $entity    = new AbcClass();
@@ -59,7 +62,7 @@  discard block
 block discarded – undo
59 62
     }
60 63
 
61 64
     /**
62
-     * @return ReferenceProviderInterface|\PHPUnit_Framework_MockObject_MockObject
65
+     * @return ReferenceProviderInterface
63 66
      */
64 67
     private function getReferenceProvider()
65 68
     {
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
@@ -95,6 +95,9 @@  discard block
 block discarded – undo
95 95
         self::assertSame([$f1, $f2, $f3, $f4], $result->toArray());
96 96
     }
97 97
 
98
+    /**
99
+     * @param integer $a
100
+     */
98 101
     private function createFixture($a, $b, $c)
99 102
     {
100 103
         $entity    = new AbcClass();
@@ -106,7 +109,7 @@  discard block
 block discarded – undo
106 109
     }
107 110
 
108 111
     /**
109
-     * @return ReferenceProviderInterface|\PHPUnit_Framework_MockObject_MockObject
112
+     * @return ReferenceProviderInterface
110 113
      */
111 114
     private function getReferenceProvider()
112 115
     {
Please login to merge, or discard this patch.