@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | * Returns expensive repair steps to be run on the |
144 | 144 | * command line with a special option. |
145 | 145 | * |
146 | - * @return IRepairStep[] |
|
146 | + * @return OldGroupMembershipShares[] |
|
147 | 147 | */ |
148 | 148 | public static function getExpensiveRepairSteps() { |
149 | 149 | return [ |
@@ -179,6 +179,8 @@ discard block |
||
179 | 179 | |
180 | 180 | /** |
181 | 181 | * {@inheritDoc} |
182 | + * @param string $scope |
|
183 | + * @param string $method |
|
182 | 184 | */ |
183 | 185 | public function emit($scope, $method, array $arguments = []) { |
184 | 186 | parent::emit($scope, $method, $arguments); |
@@ -218,7 +220,6 @@ discard block |
||
218 | 220 | } |
219 | 221 | |
220 | 222 | /** |
221 | - * @param int $max |
|
222 | 223 | */ |
223 | 224 | public function finishProgress() { |
224 | 225 | // for now just emit as we did in the past |
@@ -24,26 +24,30 @@ |
||
24 | 24 | |
25 | 25 | /** |
26 | 26 | * @param string $message |
27 | + * @return void |
|
27 | 28 | */ |
28 | 29 | public function info($message); |
29 | 30 | |
30 | 31 | /** |
31 | 32 | * @param string $message |
33 | + * @return void |
|
32 | 34 | */ |
33 | 35 | public function warning($message); |
34 | 36 | |
35 | 37 | /** |
36 | 38 | * @param int $max |
39 | + * @return void |
|
37 | 40 | */ |
38 | 41 | public function startProgress($max = 0); |
39 | 42 | |
40 | 43 | /** |
41 | 44 | * @param int $step |
45 | + * @return void |
|
42 | 46 | */ |
43 | 47 | public function advance($step = 1); |
44 | 48 | |
45 | 49 | /** |
46 | - * @param int $max |
|
50 | + * @return void |
|
47 | 51 | */ |
48 | 52 | public function finishProgress(); |
49 | 53 |