Completed
Pull Request — master (#936)
by Maxence
15s
created
lib/Service/ConfigService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,8 +32,8 @@
 block discarded – undo
32 32
 	}
33 33
 
34 34
 	public function setConfig(array $save): void {
35
-		foreach(array_keys($save) as $k) {
36
-			switch($k) {
35
+		foreach (array_keys($save) as $k) {
36
+			switch ($k) {
37 37
 				case ConfigLexicon::APP_NAVIGATION:
38 38
 					$this->appConfig->setAppValueBool($k, $save[$k]);
39 39
 					break;
Please login to merge, or discard this patch.
lib/Service/LockService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 use OCP\Security\ISecureRandom;
17 17
 
18 18
 class LockService {
19
-	private const LOCK_TIMEOUT = 300;     // the final value will be LOCK_TIMEOUT+LOCK_PING_DELAY
19
+	private const LOCK_TIMEOUT = 300; // the final value will be LOCK_TIMEOUT+LOCK_PING_DELAY
20 20
 	private const LOCK_PING_DELAY = 10;
21 21
 
22 22
 	private string $lockId;
Please login to merge, or discard this patch.
lib/AppInfo/Application.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
 		return [
104 104
 			'id'    => self::APP_ID,
105 105
 			'order' => 5,
106
-			'href'  => $urlGen->linkToRoute(self::APP_ID . '.Navigation.navigate'),
106
+			'href'  => $urlGen->linkToRoute(self::APP_ID.'.Navigation.navigate'),
107 107
 			'icon'  => $urlGen->imagePath(self::APP_ID, 'fulltextsearch.svg'),
108 108
 			'name'  => \OC::$server->getL10NFactory()->get('fulltextsearch')->t('Search')
109 109
 		];
Please login to merge, or discard this patch.