Completed
Push — 3.x-dev-kit ( b05b23 )
by
unknown
02:27
created
Datagrid/ProxyQuery.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -236,7 +236,7 @@
 block discarded – undo
236 236
     }
237 237
 
238 238
     /**
239
-     * @return mixed
239
+     * @return QueryBuilder
240 240
      */
241 241
     public function getQueryBuilder()
242 242
     {
Please login to merge, or discard this patch.
Filter/ClassFilter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
     /**
45 45
      * @param int $type
46 46
      *
47
-     * @return mixed
47
+     * @return string|false
48 48
      */
49 49
     private function getOperator($type)
50 50
     {
Please login to merge, or discard this patch.
Filter/Filter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
     }
47 47
 
48 48
     /**
49
-     * @param ProxyQueryInterface|QueryBuilder $queryBuilder
49
+     * @param ProxyQueryInterface $queryBuilder
50 50
      * @param mixed                            $parameter
51 51
      */
52 52
     protected function applyWhere(ProxyQueryInterface $queryBuilder, $parameter)
Please login to merge, or discard this patch.
Filter/NumberFilter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     /**
43 43
      * @param string $type
44 44
      *
45
-     * @return bool
45
+     * @return string|false
46 46
      */
47 47
     private function getOperator($type)
48 48
     {
Please login to merge, or discard this patch.
Model/ModelManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -618,7 +618,7 @@
 block discarded – undo
618 618
      *
619 619
      * @param string $property
620 620
      *
621
-     * @return mixed
621
+     * @return string
622 622
      */
623 623
     protected function camelize($property)
624 624
     {
Please login to merge, or discard this patch.
Tests/Filter/QueryBuilder.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
     }
125 125
 
126 126
     /**
127
-     * @return array
127
+     * @return string[]
128 128
      */
129 129
     public function getAllAliases()
130 130
     {
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     }
133 133
 
134 134
     /**
135
-     * @return array
135
+     * @return string[]
136 136
      */
137 137
     public function getRootAliases()
138 138
     {
Please login to merge, or discard this patch.
Filter/StringFilter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     /**
43 43
      * @param string $type
44 44
      *
45
-     * @return bool
45
+     * @return string|false
46 46
      */
47 47
     private function getOperator($type)
48 48
     {
Please login to merge, or discard this patch.
Tests/Model/ModelManagerTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -403,6 +403,9 @@
 block discarded – undo
403 403
         $this->assertSame(42, $result[0]);
404 404
     }
405 405
 
406
+    /**
407
+     * @param string $class
408
+     */
406 409
     private function getMetadata($class, $isVersioned)
407 410
     {
408 411
         $metadata = new ClassMetadata($class);
Please login to merge, or discard this patch.
Builder/FormContractor.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
      * NEXT_MAJOR: See next major comments above, this method should be removed when dropping support for Symfony <2.8.
205 205
      *
206 206
      * @param string $type
207
-     * @param array  $types
207
+     * @param string[]  $types
208 208
      *
209 209
      * @return bool
210 210
      */
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
 
216 216
     /**
217 217
      * @param string $type
218
-     * @param array  $classes
218
+     * @param string[]  $classes
219 219
      *
220 220
      * @return array
221 221
      */
Please login to merge, or discard this patch.