Completed
Pull Request — master (#26984)
by Victor
37:40
created
core/Application.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,6 @@
 block discarded – undo
33 33
 use OC\Core\Controller\CloudController;
34 34
 use OC\Core\Controller\LoginController;
35 35
 use OC\Core\Controller\LostController;
36
-use OC\Core\Controller\OccController;
37 36
 use OC\Core\Controller\TokenController;
38 37
 use OC\Core\Controller\TwoFactorChallengeController;
39 38
 use OC\Core\Controller\UserController;
Please login to merge, or discard this patch.
lib/private/User/Manager.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -395,7 +395,6 @@
 block discarded – undo
395 395
 
396 396
 	/**
397 397
 	 * @param \Closure $callback
398
-	 * @param string $search
399 398
 	 * @since 9.2.0
400 399
 	 */
401 400
 	public function callForSeenUsers (\Closure $callback) {
Please login to merge, or discard this patch.
lib/private/User/User.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -427,6 +427,10 @@
 block discarded – undo
427 427
 		return $url;
428 428
 	}
429 429
 
430
+	/**
431
+	 * @param string $feature
432
+	 * @param string $value
433
+	 */
430 434
 	public function triggerChange($feature, $value = null) {
431 435
 		if ($this->emitter) {
432 436
 			$this->emitter->emit('\OC\User', 'changeUser', [$this, $feature, $value]);
Please login to merge, or discard this patch.