Passed
Push — master ( 557066...971e22 )
by John
15:32 queued 12s
created
apps/dav/lib/CardDAV/AddressBookImpl.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
 		$update = false;
136 136
 		if (!isset($properties['URI'])) { // create a new contact
137 137
 			$uid = $this->createUid();
138
-			$uri = $uid . '.vcf';
138
+			$uri = $uid.'.vcf';
139 139
 			$vCard = $this->createEmptyVCard($uid);
140 140
 		} else { // update existing contact
141 141
 			$uri = $properties['URI'];
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
 	protected function createUid() {
211 211
 		do {
212 212
 			$uid = $this->getUid();
213
-			$contact = $this->backend->getContact($this->getKey(), $uid . '.vcf');
213
+			$contact = $this->backend->getContact($this->getKey(), $uid.'.vcf');
214 214
 		} while (!empty($contact));
215 215
 
216 216
 		return $uid;
@@ -251,15 +251,15 @@  discard block
 block discarded – undo
251 251
 		foreach ($vCard->children() as $property) {
252 252
 			if ($property->name === 'PHOTO' && $property->getValueType() === 'BINARY') {
253 253
 				$url = $this->urlGenerator->getAbsoluteURL(
254
-					$this->urlGenerator->linkTo('', 'remote.php') . '/dav/');
254
+					$this->urlGenerator->linkTo('', 'remote.php').'/dav/');
255 255
 				$url .= implode('/', [
256 256
 					'addressbooks',
257 257
 					substr($this->addressBookInfo['principaluri'], 11), //cut off 'principals/'
258 258
 					$this->addressBookInfo['uri'],
259 259
 					$uri
260
-				]) . '?photo';
260
+				]).'?photo';
261 261
 
262
-				$result['PHOTO'] = 'VALUE=uri:' . $url;
262
+				$result['PHOTO'] = 'VALUE=uri:'.$url;
263 263
 			} elseif (in_array($property->name, ['URL', 'GEO', 'CLOUD', 'ADR', 'EMAIL', 'IMPP', 'TEL', 'X-SOCIALPROFILE', 'RELATED', 'LANG', 'X-ADDRESSBOOKSERVER-MEMBER'])) {
264 264
 				if (!isset($result[$property->name])) {
265 265
 					$result[$property->name] = [];
Please login to merge, or discard this patch.
apps/dav/lib/CardDAV/HasPhotoPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
 		$ns = '{http://nextcloud.com/ns}';
61 61
 
62 62
 		if ($node instanceof Card) {
63
-			$propFind->handle($ns . 'has-photo', function () use ($node) {
63
+			$propFind->handle($ns.'has-photo', function() use ($node) {
64 64
 				$vcard = Reader::read($node->get());
65 65
 				return $vcard instanceof VCard
66 66
 					&& $vcard->PHOTO
Please login to merge, or discard this patch.
lib/private/Preview/BackgroundCleanupJob.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 	public function run($argument) {
65 65
 		foreach ($this->getDeletedFiles() as $fileId) {
66 66
 			try {
67
-				$preview = $this->previewFolder->getFolder((string)$fileId);
67
+				$preview = $this->previewFolder->getFolder((string) $fileId);
68 68
 				$preview->delete();
69 69
 			} catch (NotFoundException $e) {
70 70
 				// continue
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
 		 * We take the md5 of the name (fileid) and split the first 7 chars. That way
126 126
 		 * there are not a gazillion files in the root of the preview appdata.
127 127
 		 */
128
-		$like = $this->connection->escapeLikeParameter($data['path']) . '/_/_/_/_/_/_/_/%';
128
+		$like = $this->connection->escapeLikeParameter($data['path']).'/_/_/_/_/_/_/_/%';
129 129
 
130 130
 		$qb = $this->connection->getQueryBuilder();
131 131
 		$qb->select('a.name')
Please login to merge, or discard this patch.
lib/public/AppFramework/AuthPublicShareController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
 		if (substr($class, -10) === 'Controller') {
169 169
 			$class = substr($class, 0, -10);
170 170
 		}
171
-		return $app .'.'. $class .'.'. $function;
171
+		return $app.'.'.$class.'.'.$function;
172 172
 	}
173 173
 
174 174
 	/**
Please login to merge, or discard this patch.
apps/user_ldap/lib/Mapping/UserMapping.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,6 +35,6 @@
 block discarded – undo
35 35
 	 */
36 36
 	protected function getTableName(bool $includePrefix = true) {
37 37
 		$p = $includePrefix ? '*PREFIX*' : '';
38
-		return $p . 'ldap_user_mapping';
38
+		return $p.'ldap_user_mapping';
39 39
 	}
40 40
 }
Please login to merge, or discard this patch.
apps/user_ldap/lib/Mapping/GroupMapping.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,6 +35,6 @@
 block discarded – undo
35 35
 	 */
36 36
 	protected function getTableName(bool $includePrefix = true) {
37 37
 		$p = $includePrefix ? '*PREFIX*' : '';
38
-		return $p . 'ldap_group_mapping';
38
+		return $p.'ldap_group_mapping';
39 39
 	}
40 40
 }
Please login to merge, or discard this patch.
apps/user_ldap/lib/Proxy.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
 	 * @return string
108 108
 	 */
109 109
 	protected function getUserCacheKey($uid) {
110
-		return 'user-' . $uid . '-lastSeenOn';
110
+		return 'user-'.$uid.'-lastSeenOn';
111 111
 	}
112 112
 
113 113
 	/**
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 	 * @return string
116 116
 	 */
117 117
 	protected function getGroupCacheKey($gid) {
118
-		return 'group-' . $gid . '-lastSeenOn';
118
+		return 'group-'.$gid.'-lastSeenOn';
119 119
 	}
120 120
 
121 121
 	/**
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
 		if ($key === null) {
179 179
 			return $prefix;
180 180
 		}
181
-		return $prefix . hash('sha256', $key);
181
+		return $prefix.hash('sha256', $key);
182 182
 	}
183 183
 
184 184
 	/**
Please login to merge, or discard this patch.
core/Controller/SvgController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 	 * @return DataDisplayResponse|NotFoundResponse
82 82
 	 */
83 83
 	public function getSvgFromCore(string $folder, string $fileName, string $color = 'ffffff') {
84
-		$path = $this->serverRoot . "/core/img/$folder/$fileName.svg";
84
+		$path = $this->serverRoot."/core/img/$folder/$fileName.svg";
85 85
 		return $this->getSvg($path, $color, $fileName);
86 86
 	}
87 87
 
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 			return new NotFoundResponse();
105 105
 		}
106 106
 
107
-		$path = $appPath . "/img/$fileName.svg";
107
+		$path = $appPath."/img/$fileName.svg";
108 108
 		return $this->getSvg($path, $color, $fileName);
109 109
 	}
110 110
 
@@ -134,10 +134,10 @@  discard block
 block discarded – undo
134 134
 		// Set cache control
135 135
 		$ttl = 31536000;
136 136
 		$response->cacheFor($ttl);
137
-		$response->addHeader('Content-Disposition', 'inline; filename="' . $fileName . '.svg"');
137
+		$response->addHeader('Content-Disposition', 'inline; filename="'.$fileName.'.svg"');
138 138
 		$expires = new \DateTime();
139 139
 		$expires->setTimestamp($this->timeFactory->getTime());
140
-		$expires->add(new \DateInterval('PT' . $ttl . 'S'));
140
+		$expires->add(new \DateInterval('PT'.$ttl.'S'));
141 141
 		$response->addHeader('Expires', $expires->format(\DateTime::RFC1123));
142 142
 		$response->addHeader('Pragma', 'cache');
143 143
 
Please login to merge, or discard this patch.
apps/dav/lib/CalDAV/Activity/Backend.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
 		foreach ($users as $user) {
149 149
 			$event->setAffectedUser($user)
150 150
 				->setSubject(
151
-					$user === $currentUser ? $action . '_self' : $action,
151
+					$user === $currentUser ? $action.'_self' : $action,
152 152
 					[
153 153
 						'actor' => $currentUser,
154 154
 						'calendar' => [
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
 					$event,
202 202
 					$calendarData,
203 203
 					Calendar::SUBJECT_UNSHARE_USER,
204
-					Calendar::SUBJECT_DELETE . '_self'
204
+					Calendar::SUBJECT_DELETE.'_self'
205 205
 				);
206 206
 
207 207
 				if ($owner !== $principal[2]) {
@@ -216,15 +216,15 @@  discard block
 block discarded – undo
216 216
 					];
217 217
 
218 218
 					if ($owner === $event->getAuthor()) {
219
-						$subject = Calendar::SUBJECT_UNSHARE_USER . '_you';
219
+						$subject = Calendar::SUBJECT_UNSHARE_USER.'_you';
220 220
 					} elseif ($principal[2] === $event->getAuthor()) {
221
-						$subject = Calendar::SUBJECT_UNSHARE_USER . '_self';
221
+						$subject = Calendar::SUBJECT_UNSHARE_USER.'_self';
222 222
 					} else {
223 223
 						$event->setAffectedUser($event->getAuthor())
224
-							->setSubject(Calendar::SUBJECT_UNSHARE_USER . '_you', $parameters);
224
+							->setSubject(Calendar::SUBJECT_UNSHARE_USER.'_you', $parameters);
225 225
 						$this->activityManager->publish($event);
226 226
 
227
-						$subject = Calendar::SUBJECT_UNSHARE_USER . '_by';
227
+						$subject = Calendar::SUBJECT_UNSHARE_USER.'_by';
228 228
 					}
229 229
 
230 230
 					$event->setAffectedUser($owner)
@@ -245,13 +245,13 @@  discard block
 block discarded – undo
245 245
 				];
246 246
 
247 247
 				if ($owner === $event->getAuthor()) {
248
-					$subject = Calendar::SUBJECT_UNSHARE_GROUP . '_you';
248
+					$subject = Calendar::SUBJECT_UNSHARE_GROUP.'_you';
249 249
 				} else {
250 250
 					$event->setAffectedUser($event->getAuthor())
251
-						->setSubject(Calendar::SUBJECT_UNSHARE_GROUP . '_you', $parameters);
251
+						->setSubject(Calendar::SUBJECT_UNSHARE_GROUP.'_you', $parameters);
252 252
 					$this->activityManager->publish($event);
253 253
 
254
-					$subject = Calendar::SUBJECT_UNSHARE_GROUP . '_by';
254
+					$subject = Calendar::SUBJECT_UNSHARE_GROUP.'_by';
255 255
 				}
256 256
 
257 257
 				$event->setAffectedUser($owner)
@@ -287,13 +287,13 @@  discard block
 block discarded – undo
287 287
 					];
288 288
 
289 289
 					if ($owner === $event->getAuthor()) {
290
-						$subject = Calendar::SUBJECT_SHARE_USER . '_you';
290
+						$subject = Calendar::SUBJECT_SHARE_USER.'_you';
291 291
 					} else {
292 292
 						$event->setAffectedUser($event->getAuthor())
293
-							->setSubject(Calendar::SUBJECT_SHARE_USER . '_you', $parameters);
293
+							->setSubject(Calendar::SUBJECT_SHARE_USER.'_you', $parameters);
294 294
 						$this->activityManager->publish($event);
295 295
 
296
-						$subject = Calendar::SUBJECT_SHARE_USER . '_by';
296
+						$subject = Calendar::SUBJECT_SHARE_USER.'_by';
297 297
 					}
298 298
 
299 299
 					$event->setAffectedUser($owner)
@@ -314,13 +314,13 @@  discard block
 block discarded – undo
314 314
 				];
315 315
 
316 316
 				if ($owner === $event->getAuthor()) {
317
-					$subject = Calendar::SUBJECT_SHARE_GROUP . '_you';
317
+					$subject = Calendar::SUBJECT_SHARE_GROUP.'_you';
318 318
 				} else {
319 319
 					$event->setAffectedUser($event->getAuthor())
320
-						->setSubject(Calendar::SUBJECT_SHARE_GROUP . '_you', $parameters);
320
+						->setSubject(Calendar::SUBJECT_SHARE_GROUP.'_you', $parameters);
321 321
 					$this->activityManager->publish($event);
322 322
 
323
-					$subject = Calendar::SUBJECT_SHARE_GROUP . '_by';
323
+					$subject = Calendar::SUBJECT_SHARE_GROUP.'_by';
324 324
 				}
325 325
 
326 326
 				$event->setAffectedUser($owner)
@@ -419,7 +419,7 @@  discard block
 block discarded – undo
419 419
 
420 420
 		$classification = $objectData['classification'] ?? CalDavBackend::CLASSIFICATION_PUBLIC;
421 421
 		$object = $this->getObjectNameAndType($objectData);
422
-		$action = $action . '_' . $object['type'];
422
+		$action = $action.'_'.$object['type'];
423 423
 
424 424
 		if ($object['type'] === 'todo' && strpos($action, Event::SUBJECT_OBJECT_UPDATE) === 0 && $object['status'] === 'COMPLETED') {
425 425
 			$action .= '_completed';
@@ -466,7 +466,7 @@  discard block
 block discarded – undo
466 466
 
467 467
 			$event->setAffectedUser($user)
468 468
 				->setSubject(
469
-					$user === $currentUser ? $action . '_self' : $action,
469
+					$user === $currentUser ? $action.'_self' : $action,
470 470
 					$params
471 471
 				);
472 472
 
Please login to merge, or discard this patch.