Completed
Push — 6.7 ( e561f0...9704a0 )
by
unknown
12:48
created
eZ/Publish/Core/Search/Common/Indexer.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     /**
71 71
      * Get PDOStatement to fetch metadata about content objects to be indexed.
72 72
      *
73
-     * @param array $fields Select fields
73
+     * @param string[] $fields Select fields
74 74
      * @return \PDOStatement
75 75
      */
76 76
     protected function getContentDbFieldsStmt(array $fields)
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
      * Log warning while progress bar is shown.
109 109
      *
110 110
      * @param \Symfony\Component\Console\Helper\ProgressBar $progress
111
-     * @param $message
111
+     * @param string $message
112 112
      */
113 113
     protected function logWarning(ProgressBar $progress, $message)
114 114
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/FieldType/Keyword/Type.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
      * @param \eZ\Publish\Core\FieldType\Country\Value $value
170 170
      *
171
-     * @return array
171
+     * @return string
172 172
      */
173 173
     protected function getSortInfo(BaseValue $value)
174 174
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/FieldType/TextBlock/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/Tests/DateAndTimeTest.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      * NOT take care for test case wide caching of the field type, just return
31 31
      * a new instance from this method!
32 32
      *
33
-     * @return FieldType
33
+     * @return DateAndTime
34 34
      */
35 35
     protected function createFieldTypeUnderTest()
36 36
     {
@@ -218,7 +218,6 @@  discard block
 block discarded – undo
218 218
     }
219 219
 
220 220
     /**
221
-     * @param mixed $inputValue
222 221
      * @param array $expectedResult
223 222
      *
224 223
      * @dataProvider provideInputForFromHash
Please login to merge, or discard this patch.