Completed
Push — master ( 4ae855...8f18c8 )
by
unknown
06:32 queued 11s
created
src/Filter/NumberFilter.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
      * @param $type
48 48
      *
49
-     * @return bool
49
+     * @return string|false
50 50
      */
51 51
     private function getOperator($type)
52 52
     {
Please login to merge, or discard this patch.
src/Model/ModelManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -472,7 +472,7 @@
 block discarded – undo
472 472
      *
473 473
      * @param string $property
474 474
      *
475
-     * @return mixed
475
+     * @return string
476 476
      */
477 477
     protected function camelize($property)
478 478
     {
Please login to merge, or discard this patch.
src/Filter/ModelFilter.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -69,8 +69,8 @@  discard block
 block discarded – undo
69 69
     }
70 70
 
71 71
     /**
72
-     * @param type $alias
73
-     * @param type $field
72
+     * @param string $alias
73
+     * @param string $field
74 74
      * @param type $data
75 75
      *
76 76
      * @return type
@@ -96,8 +96,8 @@  discard block
 block discarded – undo
96 96
     }
97 97
 
98 98
     /**
99
-     * @param type $alias
100
-     * @param type $field
99
+     * @param string $alias
100
+     * @param string $field
101 101
      * @param type $data
102 102
      *
103 103
      * @return type
Please login to merge, or discard this patch.
tests/Filter/ModelFilterTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     }
49 49
 
50 50
     /**
51
-     * @return \Sonata\AdminBundle\Admin\FieldDescriptionInterface
51
+     * @return \PHPUnit\Framework\MockObject\MockObject
52 52
      */
53 53
     public function getFieldDescription(array $options)
54 54
     {
Please login to merge, or discard this patch.
tests/Filter/StringFilterTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -149,6 +149,9 @@
 block discarded – undo
149 149
         $this->assertTrue($filter->isActive());
150 150
     }
151 151
 
152
+    /**
153
+     * @return string
154
+     */
152 155
     private function getMongoRegexClass()
153 156
     {
154 157
         return \MongoRegex::class;
Please login to merge, or discard this patch.