Completed
Push — non_purge_indexer ( 6bd5a6...31b501 )
by André
13:30
created
Command/LegacyStorage/CleanUpRelationTypeEqZeroCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -109,6 +109,9 @@
 block discarded – undo
109 109
         $conn->exec('DELETE FROM ezcontentobject_link WHERE relation_type = 0');
110 110
     }
111 111
 
112
+    /**
113
+     * @param integer $totalCount
114
+     */
112 115
     protected function executeList(OutputInterface $output, $totalCount)
113 116
     {
114 117
         $table = new Table($output);
Please login to merge, or discard this patch.
eZ/Publish/Core/FieldType/Tests/FloatValueValidatorTest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 class FloatValueValidatorTest extends TestCase
20 20
 {
21 21
     /**
22
-     * @return float
22
+     * @return integer
23 23
      */
24 24
     protected function getMinFloatValue()
25 25
     {
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     }
28 28
 
29 29
     /**
30
-     * @return float
30
+     * @return integer
31 31
      */
32 32
     protected function getMaxFloatValue()
33 33
     {
Please login to merge, or discard this patch.
eZ/Bundle/EzPublishCoreBundle/Command/ReindexCommand.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,6 +109,10 @@  discard block
 block discarded – undo
109 109
     }
110 110
 
111 111
 
112
+    /**
113
+     * @param integer $iterationCount
114
+     * @param boolean $noCommit
115
+     */
112 116
     private function executeParallel(InputInterface $input, OutputInterface $output, $iterationCount, $noCommit)
113 117
     {
114 118
         $since = $input->getOption('since');
@@ -168,7 +172,7 @@  discard block
 block discarded – undo
168 172
      * @param \Doctrine\DBAL\Driver\Statement $stmt
169 173
      * @param int $iterationCount
170 174
      *
171
-     * @return int[][] Return an array of arrays, each array contains content id's of $iterationCount.
175
+     * @return \Generator Return an array of arrays, each array contains content id's of $iterationCount.
172 176
      */
173 177
     private function fetchIteration(Statement $stmt, $iterationCount)
174 178
     {
Please login to merge, or discard this patch.