Passed
Push — master ( 13c7a9...8fcc0e )
by Christoph
15:42 queued 11s
created
apps/twofactor_backupcodes/lib/Service/BackupCodeStorage.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -105,8 +105,8 @@  discard block
 block discarded – undo
105 105
 		$codes = $this->mapper->getBackupCodes($user);
106 106
 		$total = count($codes);
107 107
 		$used = 0;
108
-		array_walk($codes, function (BackupCode $code) use (&$used) {
109
-			if (1 === (int)$code->getUsed()) {
108
+		array_walk($codes, function(BackupCode $code) use (&$used) {
109
+			if (1 === (int) $code->getUsed()) {
110 110
 				$used++;
111 111
 			}
112 112
 		});
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
 		$dbCodes = $this->mapper->getBackupCodes($user);
127 127
 
128 128
 		foreach ($dbCodes as $dbCode) {
129
-			if (0 === (int)$dbCode->getUsed() && $this->hasher->verify($code, $dbCode->getCode())) {
129
+			if (0 === (int) $dbCode->getUsed() && $this->hasher->verify($code, $dbCode->getCode())) {
130 130
 				$dbCode->setUsed(1);
131 131
 				$this->mapper->update($dbCode);
132 132
 				return true;
Please login to merge, or discard this patch.
lib/private/Collaboration/Collaborators/RemoteGroupPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
 		if ($this->enabled && $this->cloudIdManager->isValidCloudId($search) && $offset === 0) {
60 60
 			list($remoteGroup, $serverUrl) = $this->splitGroupRemote($search);
61 61
 			$result['exact'][] = [
62
-				'label' => $remoteGroup . " ($serverUrl)",
62
+				'label' => $remoteGroup." ($serverUrl)",
63 63
 				'guid' => $remoteGroup,
64 64
 				'name' => $remoteGroup,
65 65
 				'value' => [
Please login to merge, or discard this patch.
apps/files_sharing/lib/Command/ExiprationNotification.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
 		//Current time
66 66
 		$minTime = $this->time->getDateTime();
67 67
 		$minTime->add(new \DateInterval('P1D'));
68
-		$minTime->setTime(0,0,0);
68
+		$minTime->setTime(0, 0, 0);
69 69
 
70 70
 		$maxTime = clone $minTime;
71 71
 		$maxTime->setTime(23, 59, 59);
Please login to merge, or discard this patch.
apps/files_sharing/lib/Notification/Notifier.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -232,7 +232,7 @@
 block discarded – undo
232 232
 
233 233
 		$placeholders = $replacements = [];
234 234
 		foreach ($subjectParameters as $placeholder => $parameter) {
235
-			$placeholders[] = '{' . $placeholder . '}';
235
+			$placeholders[] = '{'.$placeholder.'}';
236 236
 			$replacements[] = $parameter['name'];
237 237
 		}
238 238
 
Please login to merge, or discard this patch.
lib/private/Updater/VersionCheck.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 		}
61 61
 
62 62
 		// Look up the cache - it is invalidated all 30 minutes
63
-		if (((int)$this->config->getAppValue('core', 'lastupdatedat') + 1800) > time()) {
63
+		if (((int) $this->config->getAppValue('core', 'lastupdatedat') + 1800) > time()) {
64 64
 			return json_decode($this->config->getAppValue('core', 'lastupdateResult'), true);
65 65
 		}
66 66
 
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 		$versionString = implode('x', $version);
85 85
 
86 86
 		//fetch xml data from updater
87
-		$url = $updaterUrl . '?version=' . $versionString;
87
+		$url = $updaterUrl.'?version='.$versionString;
88 88
 
89 89
 		$tmp = [];
90 90
 		try {
@@ -98,13 +98,13 @@  discard block
 block discarded – undo
98 98
 			$data = @simplexml_load_string($xml);
99 99
 			libxml_disable_entity_loader($loadEntities);
100 100
 			if ($data !== false) {
101
-				$tmp['version'] = (string)$data->version;
102
-				$tmp['versionstring'] = (string)$data->versionstring;
103
-				$tmp['url'] = (string)$data->url;
104
-				$tmp['web'] = (string)$data->web;
105
-				$tmp['changes'] = isset($data->changes) ? (string)$data->changes : '';
106
-				$tmp['autoupdater'] = (string)$data->autoupdater;
107
-				$tmp['eol'] = isset($data->eol) ? (string)$data->eol : '0';
101
+				$tmp['version'] = (string) $data->version;
102
+				$tmp['versionstring'] = (string) $data->versionstring;
103
+				$tmp['url'] = (string) $data->url;
104
+				$tmp['web'] = (string) $data->web;
105
+				$tmp['changes'] = isset($data->changes) ? (string) $data->changes : '';
106
+				$tmp['autoupdater'] = (string) $data->autoupdater;
107
+				$tmp['eol'] = isset($data->eol) ? (string) $data->eol : '0';
108 108
 			} else {
109 109
 				libxml_clear_errors();
110 110
 			}
Please login to merge, or discard this patch.
lib/private/Files/Config/CachedMountFileInfo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,6 +43,6 @@
 block discarded – undo
43 43
 	}
44 44
 
45 45
 	public function getPath() {
46
-		return $this->getMountPoint() . $this->getInternalPath();
46
+		return $this->getMountPoint().$this->getInternalPath();
47 47
 	}
48 48
 }
Please login to merge, or discard this patch.
core/Command/Group/Add.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 		$gid = $input->getArgument('groupid');
66 66
 		$group = $this->groupManager->get($gid);
67 67
 		if ($group) {
68
-			$output->writeln('<error>Group "' . $gid . '" already exists.</error>');
68
+			$output->writeln('<error>Group "'.$gid.'" already exists.</error>');
69 69
 			return 1;
70 70
 		} else {
71 71
 			$group = $this->groupManager->createGroup($gid);
@@ -73,9 +73,9 @@  discard block
 block discarded – undo
73 73
 				$output->writeln('<error>Could not create group</error>');
74 74
 				return 2;
75 75
 			}
76
-			$output->writeln('Created group "' . $group->getGID() . '"');
76
+			$output->writeln('Created group "'.$group->getGID().'"');
77 77
 
78
-			$displayName = trim((string)$input->getOption('display-name'));
78
+			$displayName = trim((string) $input->getOption('display-name'));
79 79
 			if ($displayName !== '') {
80 80
 				$group->setDisplayName($displayName);
81 81
 			}
Please login to merge, or discard this patch.
apps/files/lib/BackgroundJob/TransferOwnership.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 		$destinationUserObject = $this->userManager->get($destinationUser);
99 99
 
100 100
 		if (!$sourceUserObject instanceof IUser) {
101
-			$this->logger->alert('Could not transfer ownership: Unknown source user ' . $sourceUser);
101
+			$this->logger->alert('Could not transfer ownership: Unknown source user '.$sourceUser);
102 102
 			$this->failedNotication($transfer);
103 103
 			return;
104 104
 		}
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 				'targetUser' => $transfer->getTargetUser(),
137 137
 				'nodeName' => $transfer->getNodeName(),
138 138
 			])
139
-			->setObject('transfer', (string)$transfer->getId());
139
+			->setObject('transfer', (string) $transfer->getId());
140 140
 		$this->notificationManager->notify($notification);
141 141
 
142 142
 		// Send notification to source user
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
 				'targetUser' => $transfer->getTargetUser(),
150 150
 				'nodeName' => $transfer->getNodeName(),
151 151
 			])
152
-			->setObject('transfer', (string)$transfer->getId());
152
+			->setObject('transfer', (string) $transfer->getId());
153 153
 		$this->notificationManager->notify($notification);
154 154
 	}
155 155
 
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
 				'targetUser' => $transfer->getTargetUser(),
165 165
 				'nodeName' => $transfer->getNodeName(),
166 166
 			])
167
-			->setObject('transfer', (string)$transfer->getId());
167
+			->setObject('transfer', (string) $transfer->getId());
168 168
 		$this->notificationManager->notify($notification);
169 169
 
170 170
 		// Send notification to source user
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
 				'targetUser' => $transfer->getTargetUser(),
178 178
 				'nodeName' => $transfer->getNodeName(),
179 179
 			])
180
-			->setObject('transfer', (string)$transfer->getId());
180
+			->setObject('transfer', (string) $transfer->getId());
181 181
 		$this->notificationManager->notify($notification);
182 182
 	}
183 183
 }
Please login to merge, or discard this patch.
lib/private/Collaboration/Resources/ProviderManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
 					$this->providerInstances[] = $this->serverContainer->query($provider);
55 55
 				} catch (QueryException $e) {
56 56
 					$this->logger->logException($e, [
57
-						'message' => "Could not query resource provider $provider: " . $e->getMessage()
57
+						'message' => "Could not query resource provider $provider: ".$e->getMessage()
58 58
 					]);
59 59
 				}
60 60
 			}
Please login to merge, or discard this patch.