Completed
Push — master ( 07d8e9...d15c89 )
by Christian
14:52
created
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.
Builder/FormContractor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
 
169 169
     /**
170 170
      * @param string $type
171
-     * @param array  $classes
171
+     * @param string[]  $classes
172 172
      *
173 173
      * @return array
174 174
      */
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
@@ -500,6 +500,9 @@
 block discarded – undo
500 500
         $this->assertSame('hello', $object->getMultiWordProperty());
501 501
     }
502 502
 
503
+    /**
504
+     * @param string $class
505
+     */
503 506
     private function getMetadata($class, $isVersioned)
504 507
     {
505 508
         $metadata = new ClassMetadata($class);
Please login to merge, or discard this patch.
Datagrid/ProxyQuery.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
     }
196 196
 
197 197
     /**
198
-     * @return mixed
198
+     * @return QueryBuilder
199 199
      */
200 200
     public function getQueryBuilder()
201 201
     {
@@ -288,7 +288,7 @@  discard block
 block discarded – undo
288 288
      * Sets a {@see \Doctrine\ORM\Query} hint. If the hint name is not recognized, it is silently ignored.
289 289
      *
290 290
      * @param string $name  the name of the hint
291
-     * @param mixed  $value the value of the hint
291
+     * @param string  $value the value of the hint
292 292
      *
293 293
      * @return ProxyQueryInterface
294 294
      *
Please login to merge, or discard this patch.