Completed
Push — master ( 0241f7...6d62a7 )
by Morris
07:58
created
lib/private/repair.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
lib/public/migration/ioutput.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,26 +24,30 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.