Completed
Push — master ( 130fb8...ecb06b )
by Sullivan
02:20
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/StringFilter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
     /**
54 54
      * @param string $type
55 55
      *
56
-     * @return bool
56
+     * @return string|false
57 57
      */
58 58
     private function getOperator($type)
59 59
     {
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/Model/ModelManagerTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -161,6 +161,9 @@
 block discarded – undo
161 161
         $modelManager->lock($object, 123);
162 162
     }
163 163
 
164
+    /**
165
+     * @param string $class
166
+     */
164 167
     private function getMetadata($class, $isVersioned)
165 168
     {
166 169
         $metadata = new ClassMetadata($class);
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
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
     /**
54 54
      * @param string $type
55 55
      *
56
-     * @return bool
56
+     * @return string|false
57 57
      */
58 58
     private function getOperator($type)
59 59
     {
Please login to merge, or discard this patch.