@@ -109,6 +109,9 @@ |
||
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); |
@@ -19,7 +19,7 @@ discard block |
||
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 |
||
27 | 27 | } |
28 | 28 | |
29 | 29 | /** |
30 | - * @return float |
|
30 | + * @return integer |
|
31 | 31 | */ |
32 | 32 | protected function getMaxFloatValue() |
33 | 33 | { |
@@ -109,6 +109,10 @@ discard block |
||
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 |
||
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 | { |