Completed
Push — ezp26148-percent_symbols_in_va... ( 19c9ce...a55721 )
by
unknown
23:26
created
eZ/Publish/Core/FieldType/TextBlock/Type.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     /**
72 72
      * Returns if the given $value is considered empty by the field type.
73 73
      *
74
-     * @param mixed $value
74
+     * @param SPIValue $value
75 75
      *
76 76
      * @return bool
77 77
      */
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
      *
120 120
      * @param \eZ\Publish\Core\FieldType\TextBlock\Value $value
121 121
      *
122
-     * @return array
122
+     * @return boolean
123 123
      */
124 124
     protected function getSortInfo(BaseValue $value)
125 125
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/FieldType/TextLine/Type.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
     /**
184 184
      * Returns if the given $value is considered empty by the field type.
185 185
      *
186
-     * @param mixed $value
186
+     * @param SPIValue $value
187 187
      *
188 188
      * @return bool
189 189
      */
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
      *
232 232
      * @param \eZ\Publish\Core\FieldType\TextLine\Value $value
233 233
      *
234
-     * @return array
234
+     * @return string
235 235
      */
236 236
     protected function getSortInfo(BaseValue $value)
237 237
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/FieldType/Float/Type.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     /**
72 72
      * Returns if the given $value is considered empty by the field type.
73 73
      *
74
-     * @param mixed $value
74
+     * @param SPIValue $value
75 75
      *
76 76
      * @return bool
77 77
      */
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
      *
120 120
      * @param \eZ\Publish\Core\FieldType\TextBlock\Value $value
121 121
      *
122
-     * @return array
122
+     * @return boolean
123 123
      */
124 124
     protected function getSortInfo(BaseValue $value)
125 125
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/FieldType/Integer/Type.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
     /**
63 63
      * Returns if the given $value is considered empty by the field type.
64 64
      *
65
-     * @param mixed $value
65
+     * @param SPIValue $value
66 66
      *
67 67
      * @return bool
68 68
      */
Please login to merge, or discard this patch.
eZ/Publish/Core/FieldType/RelationList/Type.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
      *
107 107
      * @param \eZ\Publish\Core\FieldType\Url\Value $value
108 108
      *
109
-     * @return array
109
+     * @return boolean
110 110
      */
111 111
     protected function getSortInfo(BaseValue $value)
112 112
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/FieldType/Selection/Type.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
     /**
184 184
      * Returns if the given $value is considered empty by the field type.
185 185
      *
186
-     * @param mixed $value
186
+     * @param SPIValue $value
187 187
      *
188 188
      * @return bool
189 189
      */
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
      *
232 232
      * @param \eZ\Publish\Core\FieldType\TextLine\Value $value
233 233
      *
234
-     * @return array
234
+     * @return string
235 235
      */
236 236
     protected function getSortInfo(BaseValue $value)
237 237
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/FieldType/RichText/Type.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -402,7 +402,6 @@
 block discarded – undo
402 402
      * Not intended for \eZ\Publish\API\Repository\Values\Content\Relation::COMMON type relations,
403 403
      * there is a service API for handling those.
404 404
      *
405
-     * @param \eZ\Publish\Core\FieldType\RichText\Value $fieldValue
406 405
      *
407 406
      * @return array Hash with relation type as key and array of destination content ids as value.
408 407
      *
Please login to merge, or discard this patch.
eZ/Publish/Core/FieldType/Tests/FieldTypeTest.php 1 patch
Doc Comments   +1 added lines, -5 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     private $fieldTypeUnderTest;
25 25
 
26 26
     /**
27
-     * @return \eZ\Publish\Core\Persistence\TransformationProcessor|\PHPUnit_Framework_MockObject_MockObject
27
+     * @return \eZ\Publish\Core\Persistence\TransformationProcessor
28 28
      */
29 29
     protected function getTransformationProcessorMock()
30 30
     {
@@ -540,7 +540,6 @@  discard block
 block discarded – undo
540 540
     /**
541 541
      * @dataProvider provideDataForGetName
542 542
      *
543
-     * @param SPIValue $spiValue
544 543
      * @param string $expected
545 544
      */
546 545
     public function testGetName(SPIValue $value, $expected)
@@ -673,7 +672,6 @@  discard block
 block discarded – undo
673 672
     }
674 673
 
675 674
     /**
676
-     * @param mixed $inputValue
677 675
      * @param array $expectedResult
678 676
      *
679 677
      * @dataProvider provideInputForFromHash
@@ -813,7 +811,6 @@  discard block
 block discarded – undo
813 811
     }
814 812
 
815 813
     /**
816
-     * @param mixed $inputConfiguration
817 814
      *
818 815
      * @dataProvider provideValidFieldSettings
819 816
      */
@@ -841,7 +838,6 @@  discard block
 block discarded – undo
841 838
     }
842 839
 
843 840
     /**
844
-     * @param mixed $inputConfiguration
845 841
      *
846 842
      * @dataProvider provideValidFieldSettings
847 843
      */
Please login to merge, or discard this patch.