Completed
Push — master ( f6e5b9...cc7dd9 )
by
unknown
18s queued 14s
created
lib/ShareByCircleProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -442,7 +442,7 @@  discard block
 block discarded – undo
442 442
 
443 443
 		return array_filter(
444 444
 			array_map(
445
-				function (ShareWrapper $wrapper) {
445
+				function(ShareWrapper $wrapper) {
446 446
 					return $wrapper->getShare($this->rootFolder, $this->userManager, $this->urlGenerator);
447 447
 				}, $wrappedShares
448 448
 			)
@@ -494,7 +494,7 @@  discard block
 block discarded – undo
494 494
 
495 495
 		return array_filter(
496 496
 			array_map(
497
-				function (ShareWrapper $wrapper) {
497
+				function(ShareWrapper $wrapper) {
498 498
 					return $wrapper->getShare($this->rootFolder, $this->userManager, $this->urlGenerator);
499 499
 				}, $wrappedShares
500 500
 			)
@@ -543,7 +543,7 @@  discard block
 block discarded – undo
543 543
 
544 544
 		return array_filter(
545 545
 			array_map(
546
-				function (ShareWrapper $wrapper) {
546
+				function(ShareWrapper $wrapper) {
547 547
 					return $wrapper->getShare(
548 548
 						$this->rootFolder, $this->userManager, $this->urlGenerator, true
549 549
 					);
@@ -574,7 +574,7 @@  discard block
 block discarded – undo
574 574
 
575 575
 		$share = $wrappedShare->getShare($this->rootFolder, $this->userManager, $this->urlGenerator);
576 576
 		if ($share->getPassword() !== '') {
577
-			$this->logger->notice('share is protected by a password, hash: ' . $share->getPassword());
577
+			$this->logger->notice('share is protected by a password, hash: '.$share->getPassword());
578 578
 		}
579 579
 
580 580
 		return $share;
@@ -684,7 +684,7 @@  discard block
 block discarded – undo
684 684
 							];
685 685
 						} else {
686 686
 							// we only store temp value, as token is unknown at this point
687
-							$remote[$member->getUserid() . '@' . $member->getInstance()] = [
687
+							$remote[$member->getUserid().'@'.$member->getInstance()] = [
688 688
 								'node_id' => $share->getFileSource(),
689 689
 								'shareId' => $share->getId(),
690 690
 								'memberId' => $member->getId(),
Please login to merge, or discard this patch.
lib/Circles/FileSharingBroadcaster.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 			$this->miscService = OC::$server->query(MiscService::class);
115 115
 		} catch (QueryException $e) {
116 116
 			OC::$server->getLogger()
117
-				->log(1, 'Circles: cannot init FileSharingBroadcaster - ' . $e->getMessage());
117
+				->log(1, 'Circles: cannot init FileSharingBroadcaster - '.$e->getMessage());
118 118
 		}
119 119
 
120 120
 		try {
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
 
260 260
 		$allShares = $this->fileSharesRequest->getSharesForCircle($member->getCircleId());
261 261
 		$knownShares = array_map(
262
-			function (SharesToken $shareToken) {
262
+			function(SharesToken $shareToken) {
263 263
 				return $shareToken->getShareId();
264 264
 			},
265 265
 			$this->tokensRequest->getTokensFromMember($member)
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
 	 * @throws IllegalIDChangeException
307 307
 	 */
308 308
 	private function generateShare($data): IShare {
309
-		$this->logger->log(0, 'Regenerate shares from payload: ' . json_encode($data));
309
+		$this->logger->log(0, 'Regenerate shares from payload: '.json_encode($data));
310 310
 
311 311
 		$share = new Share($this->rootFolder, $this->userManager);
312 312
 		$share->setId($data['id']);
@@ -399,7 +399,7 @@  discard block
 block discarded – undo
399 399
 			$this->sendPasswordByMail($share, $displayName, $email, $password);
400 400
 		} catch (Exception $e) {
401 401
 			OC::$server->getLogger()
402
-				->log(1, 'Circles::sharedByMail - mail were not sent: ' . $e->getMessage());
402
+				->log(1, 'Circles::sharedByMail - mail were not sent: '.$e->getMessage());
403 403
 		}
404 404
 	}
405 405
 
@@ -417,8 +417,8 @@  discard block
 block discarded – undo
417 417
 		$message = $this->mailer->createMessage();
418 418
 
419 419
 		$this->logger->log(
420
-			0, "Sending mail to circle '" . $circleName . "': " . $email . ' file: ' . $fileName
421
-			   . ' - link: ' . $link
420
+			0, "Sending mail to circle '".$circleName."': ".$email.' file: '.$fileName
421
+			   . ' - link: '.$link
422 422
 		);
423 423
 
424 424
 		$subject = $this->l10n->t('%s shared »%s« with you.', [$author, $fileName]);
@@ -456,7 +456,7 @@  discard block
 block discarded – undo
456 456
 
457 457
 		$message = $this->mailer->createMessage();
458 458
 
459
-		$this->logger->log(0, "Sending password mail to circle '" . $circleName . "': " . $email);
459
+		$this->logger->log(0, "Sending password mail to circle '".$circleName."': ".$email);
460 460
 
461 461
 		$filename = $share->getNode()
462 462
 			->getName();
@@ -511,7 +511,7 @@  discard block
 block discarded – undo
511 511
 		$message->setFrom([\OCP\Util::getDefaultEmailAddress($instanceName) => $senderName]);
512 512
 		if ($initiatorEmailAddress !== null) {
513 513
 			$message->setReplyTo([$initiatorEmailAddress => $initiatorDisplayName]);
514
-			$emailTemplate->addFooter($instanceName . ' - ' . $this->defaults->getSlogan());
514
+			$emailTemplate->addFooter($instanceName.' - '.$this->defaults->getSlogan());
515 515
 		} else {
516 516
 			$emailTemplate->addFooter();
517 517
 		}
@@ -546,7 +546,7 @@  discard block
 block discarded – undo
546 546
 		$emailTemplate->addHeader();
547 547
 		$emailTemplate->addHeading($subject, false);
548 548
 		$emailTemplate->addBodyText(
549
-			htmlspecialchars($text) . '<br>' . htmlspecialchars(
549
+			htmlspecialchars($text).'<br>'.htmlspecialchars(
550 550
 				$this->l10n->t('Click the button below to open it.')
551 551
 			), $text
552 552
 		);
@@ -592,7 +592,7 @@  discard block
 block discarded – undo
592 592
 			$this->sendMailExistingShares($template, $author->getCachedName(), $recipient);
593 593
 			$this->sendPasswordExistingShares($author, $recipient, $password);
594 594
 		} catch (Exception $e) {
595
-			$this->logger->log(2, 'Failed to send mail about existing share ' . $e->getMessage());
595
+			$this->logger->log(2, 'Failed to send mail about existing share '.$e->getMessage());
596 596
 		}
597 597
 	}
598 598
 
@@ -615,7 +615,7 @@  discard block
 block discarded – undo
615 615
 		$authorName = ($authorUser instanceof IUser) ? $authorUser->getDisplayName() : $author;
616 616
 		$authorEmail = ($authorUser instanceof IUser) ? $authorUser->getEMailAddress() : null;
617 617
 
618
-		$this->logger->log(0, "Sending password mail about existing files to '" . $email . "'");
618
+		$this->logger->log(0, "Sending password mail about existing files to '".$email."'");
619 619
 
620 620
 		$plainBodyPart = $this->l10n->t(
621 621
 			"%1\$s shared multiple files with you.\nYou should have already received a separate email with a link to access them.\n",
@@ -657,7 +657,7 @@  discard block
 block discarded – undo
657 657
 		$message->setFrom([\OCP\Util::getDefaultEmailAddress($instanceName) => $senderName]);
658 658
 		if ($authorEmail !== null) {
659 659
 			$message->setReplyTo([$authorEmail => $authorName]);
660
-			$emailTemplate->addFooter($instanceName . ' - ' . $this->defaults->getSlogan());
660
+			$emailTemplate->addFooter($instanceName.' - '.$this->defaults->getSlogan());
661 661
 		} else {
662 662
 			$emailTemplate->addFooter();
663 663
 		}
@@ -702,7 +702,7 @@  discard block
 block discarded – undo
702 702
 	 */
703 703
 	protected function generateMailExitingShares($author, $circleName) {
704 704
 		$this->logger->log(
705
-			0, "Generating mail about existing share mail from '" . $author . "' in "
705
+			0, "Generating mail about existing share mail from '".$author."' in "
706 706
 			   . $circleName
707 707
 		);
708 708
 
Please login to merge, or discard this patch.
lib/Tools/ActivityPub/NCSignature.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -196,8 +196,8 @@  discard block
 block discarded – undo
196 196
 			throw new SignatureException('missing elements in \'headers\'');
197 197
 		}
198 198
 
199
-		$target = strtolower($request->getMethod()) . ' ' . $request->getRequestUri();
200
-		$estimated = ['(request-target): ' . $target];
199
+		$target = strtolower($request->getMethod()).' '.$request->getRequestUri();
200
+		$estimated = ['(request-target): '.$target];
201 201
 
202 202
 		foreach ($headers as $key) {
203 203
 			$value = $request->getHeader($key);
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
 				throw new SignatureException('empty elements in \'headers\'');
209 209
 			}
210 210
 
211
-			$estimated[] = $key . ': ' . $value;
211
+			$estimated[] = $key.': '.$value;
212 212
 		}
213 213
 		$signedRequest->setClearSignature(implode("\n", $estimated));
214 214
 	}
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
 		$request = $signedRequest->getOutgoingRequest();
281 281
 
282 282
 		$data = new SimpleDataStore();
283
-		$data->s('(request-target)', NCRequest::method($request->getType()) . ' ' . $request->getPath())
283
+		$data->s('(request-target)', NCRequest::method($request->getType()).' '.$request->getPath())
284 284
 			->sInt('content-length', strlen($signedRequest->getBody()))
285 285
 			->s('date', gmdate($this->dateHeader))
286 286
 			->s('digest', $signedRequest->getDigest())
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
 		foreach ($data->keys() as $element) {
300 300
 			try {
301 301
 				$value = $data->gItem($element);
302
-				$signing[] = $element . ': ' . $value;
302
+				$signing[] = $element.': '.$value;
303 303
 				if ($element !== '(request-target)') {
304 304
 					$signedRequest->getOutgoingRequest()->addHeader($element, $value);
305 305
 				}
@@ -332,10 +332,10 @@  discard block
 block discarded – undo
332 332
 		$headers = array_diff($signedRequest->getSignatureHeader()->keys(), ['(request-target)']);
333 333
 		$signatory = $signedRequest->getSignatory();
334 334
 		$signatureElements = [
335
-			'keyId="' . $signatory->getKeyId() . '"',
336
-			'algorithm="' . $this->getChosenEncryption($signatory) . '"',
337
-			'headers="' . implode(' ', $headers) . '"',
338
-			'signature="' . $signedRequest->getSignedSignature() . '"'
335
+			'keyId="'.$signatory->getKeyId().'"',
336
+			'algorithm="'.$this->getChosenEncryption($signatory).'"',
337
+			'headers="'.implode(' ', $headers).'"',
338
+			'signature="'.$signedRequest->getSignedSignature().'"'
339 339
 		];
340 340
 
341 341
 		$signedRequest->getOutgoingRequest()->addHeader('Signature', implode(',', $signatureElements));
Please login to merge, or discard this patch.
lib/Tools/Db/ExtendedQueryBuilder.php 1 patch
Spacing   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
 	 */
196 196
 	public function limitToCreation(int $delay = 0): self {
197 197
 		$date = new DateTime('now');
198
-		$date->sub(new DateInterval('PT' . $delay . 'M'));
198
+		$date->sub(new DateInterval('PT'.$delay.'M'));
199 199
 
200 200
 		$this->limitToDBFieldDateTime('creation', $date, true);
201 201
 
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
 		$expr = $this->expr();
213 213
 		$pf = ($this->getType() === DBALQueryBuilder::SELECT) ? $this->getDefaultSelectAlias()
214 214
 																. '.' : '';
215
-		$field = $pf . $field;
215
+		$field = $pf.$field;
216 216
 
217 217
 		$orX = $expr->orX();
218 218
 		$orX->add(
@@ -242,8 +242,8 @@  discard block
 block discarded – undo
242 242
 		}
243 243
 
244 244
 		$expr = $this->expr();
245
-		$pf = ($this->getType() === DBALQueryBuilder::SELECT) ? $this->getDefaultSelectAlias() . '.' : '';
246
-		$field = $pf . $field;
245
+		$pf = ($this->getType() === DBALQueryBuilder::SELECT) ? $this->getDefaultSelectAlias().'.' : '';
246
+		$field = $pf.$field;
247 247
 
248 248
 		$orX = $expr->orX();
249 249
 		$orX->add(
@@ -261,8 +261,8 @@  discard block
 block discarded – undo
261 261
 	public function searchInDBField(string $field, string $value): void {
262 262
 		$expr = $this->expr();
263 263
 
264
-		$pf = ($this->getType() === DBALQueryBuilder::SELECT) ? $this->getDefaultSelectAlias() . '.' : '';
265
-		$field = $pf . $field;
264
+		$pf = ($this->getType() === DBALQueryBuilder::SELECT) ? $this->getDefaultSelectAlias().'.' : '';
265
+		$field = $pf.$field;
266 266
 
267 267
 		$this->andWhere($expr->iLike($field, $this->createNamedParameter($value)));
268 268
 	}
@@ -385,7 +385,7 @@  discard block
 block discarded – undo
385 385
 	 */
386 386
 	public function exprLike(string $field, string $value, string $alias = '', bool $cs = true): string {
387 387
 		if ($this->getType() === DBALQueryBuilder::SELECT) {
388
-			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field;
388
+			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field;
389 389
 		}
390 390
 
391 391
 		$expr = $this->expr();
@@ -398,7 +398,7 @@  discard block
 block discarded – undo
398 398
 
399 399
 	public function exprLimit(string $field, string $value, string $alias = '', bool $cs = true): string {
400 400
 		if ($this->getType() === DBALQueryBuilder::SELECT) {
401
-			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field;
401
+			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field;
402 402
 		}
403 403
 
404 404
 		$expr = $this->expr();
@@ -416,7 +416,7 @@  discard block
 block discarded – undo
416 416
 
417 417
 	public function exprLimitInt(string $field, int $value, string $alias = ''): string {
418 418
 		if ($this->getType() === DBALQueryBuilder::SELECT) {
419
-			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field;
419
+			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field;
420 420
 		}
421 421
 
422 422
 		$expr = $this->expr();
@@ -434,7 +434,7 @@  discard block
 block discarded – undo
434 434
 	 */
435 435
 	public function exprLimitBool(string $field, bool $value, string $alias = ''): string {
436 436
 		if ($this->getType() === DBALQueryBuilder::SELECT) {
437
-			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field;
437
+			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field;
438 438
 		}
439 439
 
440 440
 		$expr = $this->expr();
@@ -455,7 +455,7 @@  discard block
 block discarded – undo
455 455
 		string $alias = '',
456 456
 	): ICompositeExpression {
457 457
 		if ($this->getType() === DBALQueryBuilder::SELECT) {
458
-			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field;
458
+			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field;
459 459
 		}
460 460
 
461 461
 		$expr = $this->expr();
@@ -481,7 +481,7 @@  discard block
 block discarded – undo
481 481
 		string $alias = '',
482 482
 	): ICompositeExpression {
483 483
 		if ($this->getType() === DBALQueryBuilder::SELECT) {
484
-			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field;
484
+			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field;
485 485
 		}
486 486
 
487 487
 		$expr = $this->expr();
@@ -536,7 +536,7 @@  discard block
 block discarded – undo
536 536
 		int $type = IQueryBuilder::PARAM_STR_ARRAY,
537 537
 	): string {
538 538
 		if ($this->getType() === DBALQueryBuilder::SELECT) {
539
-			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field;
539
+			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field;
540 540
 		}
541 541
 
542 542
 		$expr = $this->expr();
@@ -553,7 +553,7 @@  discard block
 block discarded – undo
553 553
 	 */
554 554
 	public function exprLimitBitwise(string $field, int $flag, string $alias = ''): string {
555 555
 		if ($this->getType() === DBALQueryBuilder::SELECT) {
556
-			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field;
556
+			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field;
557 557
 		}
558 558
 
559 559
 		$expr = $this->expr();
@@ -575,7 +575,7 @@  discard block
 block discarded – undo
575 575
 	 */
576 576
 	public function exprLt(string $field, int $value, bool $lte = false, string $alias = ''): string {
577 577
 		if ($this->getType() === DBALQueryBuilder::SELECT) {
578
-			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field;
578
+			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field;
579 579
 		}
580 580
 
581 581
 		$expr = $this->expr();
@@ -597,7 +597,7 @@  discard block
 block discarded – undo
597 597
 	 */
598 598
 	public function exprGt(string $field, int $value, bool $gte = false, string $alias = ''): string {
599 599
 		if ($this->getType() === DBALQueryBuilder::SELECT) {
600
-			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field;
600
+			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field;
601 601
 		}
602 602
 
603 603
 		$expr = $this->expr();
@@ -706,7 +706,7 @@  discard block
 block discarded – undo
706 706
 	 */
707 707
 	public function exprUnlike(string $field, string $value, string $alias = '', bool $cs = true): string {
708 708
 		if ($this->getType() === DBALQueryBuilder::SELECT) {
709
-			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field;
709
+			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field;
710 710
 		}
711 711
 
712 712
 		$expr = $this->expr();
@@ -730,7 +730,7 @@  discard block
 block discarded – undo
730 730
 	 */
731 731
 	public function exprFilter(string $field, string $value, string $alias = '', bool $cs = true): string {
732 732
 		if ($this->getType() === DBALQueryBuilder::SELECT) {
733
-			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field;
733
+			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field;
734 734
 		}
735 735
 
736 736
 		$expr = $this->expr();
@@ -756,7 +756,7 @@  discard block
 block discarded – undo
756 756
 	 */
757 757
 	public function exprFilterInt(string $field, int $value, string $alias = ''): string {
758 758
 		if ($this->getType() === DBALQueryBuilder::SELECT) {
759
-			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field;
759
+			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field;
760 760
 		}
761 761
 
762 762
 		$expr = $this->expr();
@@ -774,7 +774,7 @@  discard block
 block discarded – undo
774 774
 	 */
775 775
 	public function exprFilterBool(string $field, bool $value, string $alias = ''): string {
776 776
 		if ($this->getType() === DBALQueryBuilder::SELECT) {
777
-			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field;
777
+			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field;
778 778
 		}
779 779
 
780 780
 		$expr = $this->expr();
@@ -795,7 +795,7 @@  discard block
 block discarded – undo
795 795
 		string $alias = '',
796 796
 	): ICompositeExpression {
797 797
 		if ($this->getType() === DBALQueryBuilder::SELECT) {
798
-			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field;
798
+			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field;
799 799
 		}
800 800
 
801 801
 		$expr = $this->expr();
@@ -821,7 +821,7 @@  discard block
 block discarded – undo
821 821
 		string $alias = '',
822 822
 	): ICompositeExpression {
823 823
 		if ($this->getType() === DBALQueryBuilder::SELECT) {
824
-			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field;
824
+			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field;
825 825
 		}
826 826
 
827 827
 		$expr = $this->expr();
@@ -850,7 +850,7 @@  discard block
 block discarded – undo
850 850
 		bool $cs = true,
851 851
 	): ICompositeExpression {
852 852
 		if ($this->getType() === DBALQueryBuilder::SELECT) {
853
-			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field;
853
+			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field;
854 854
 		}
855 855
 
856 856
 		$orX = $this->expr()->orX();
@@ -875,7 +875,7 @@  discard block
 block discarded – undo
875 875
 	 */
876 876
 	public function exprFilterInArray(string $field, array $values, string $alias = ''): string {
877 877
 		if ($this->getType() === DBALQueryBuilder::SELECT) {
878
-			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field;
878
+			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field;
879 879
 		}
880 880
 
881 881
 		$expr = $this->expr();
@@ -893,7 +893,7 @@  discard block
 block discarded – undo
893 893
 	 */
894 894
 	public function exprFilterBitwise(string $field, int $flag, string $alias = ''): string {
895 895
 		if ($this->getType() === DBALQueryBuilder::SELECT) {
896
-			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field;
896
+			$field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field;
897 897
 		}
898 898
 
899 899
 		$expr = $this->expr();
@@ -1054,12 +1054,12 @@  discard block
 block discarded – undo
1054 1054
 		string $alias = '',
1055 1055
 	): self {
1056 1056
 		$selectFields = array_map(
1057
-			function (string $item) use ($alias) {
1057
+			function(string $item) use ($alias) {
1058 1058
 				if ($alias === '') {
1059 1059
 					return $item;
1060 1060
 				}
1061 1061
 
1062
-				return $alias . '.' . $item;
1062
+				return $alias.'.'.$item;
1063 1063
 			}, $fields
1064 1064
 		);
1065 1065
 
@@ -1085,13 +1085,13 @@  discard block
 block discarded – undo
1085 1085
 		string $prefix,
1086 1086
 		array $default = [],
1087 1087
 	): self {
1088
-		$prefix = trim($prefix) . '_';
1088
+		$prefix = trim($prefix).'_';
1089 1089
 		foreach ($default as $k => $v) {
1090
-			$this->addDefaultValue($prefix . $k, (string)$v);
1090
+			$this->addDefaultValue($prefix.$k, (string)$v);
1091 1091
 		}
1092 1092
 
1093 1093
 		foreach ($fields as $field) {
1094
-			$this->selectAlias($alias . '.' . $field, $prefix . $field);
1094
+			$this->selectAlias($alias.'.'.$field, $prefix.$field);
1095 1095
 		}
1096 1096
 
1097 1097
 		return $this;
Please login to merge, or discard this patch.
lib/Tools/Model/NCSignedRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@
 block discarded – undo
115 115
 	 */
116 116
 	public function setBody(string $body): self {
117 117
 		$this->body = $body;
118
-		$this->setDigest('SHA-256=' . base64_encode(hash('sha256', utf8_encode($body), true)));
118
+		$this->setDigest('SHA-256='.base64_encode(hash('sha256', utf8_encode($body), true)));
119 119
 
120 120
 		return $this;
121 121
 	}
Please login to merge, or discard this patch.
lib/Command/MigrateCustomGroups.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -78,18 +78,18 @@  discard block
 block discarded – undo
78 78
 
79 79
 			$name = $rowCG['display_name'];
80 80
 			while (strlen($name) < 3) {
81
-				$name = '_' . $name;
81
+				$name = '_'.$name;
82 82
 			}
83 83
 
84 84
 			// based on owner's userid, we create federateduser and a new circle
85
-			$this->output->writeln('+ New Team <info>' . $name . '</info>, owner by <info>' . $ownerId . '</info>');
85
+			$this->output->writeln('+ New Team <info>'.$name.'</info>, owner by <info>'.$ownerId.'</info>');
86 86
 			$owner = $this->cachedFed($ownerId);
87 87
 
88 88
 			$this->circlesManager->startSession($owner);
89 89
 			try {
90 90
 				$circle = $this->circlesManager->createCircle($name);
91 91
 			} catch (\Exception $e) {
92
-				$this->output->writeln('<error>' . get_class($e) . ' ' . $e->getMessage() . '</error> with data ' . json_encode($rowCG));
92
+				$this->output->writeln('<error>'.get_class($e).' '.$e->getMessage().'</error> with data '.json_encode($rowCG));
93 93
 				$this->logger->log(2, 'error while creating circle', ['exception' => $e]);
94 94
 				$this->circlesManager->stopSession();
95 95
 				continue;
@@ -116,13 +116,13 @@  discard block
 block discarded – undo
116 116
 						continue; // owner is already in the circles
117 117
 					}
118 118
 
119
-					$this->output->writeln(' - new member <info>' . $userId . '</info>');
119
+					$this->output->writeln(' - new member <info>'.$userId.'</info>');
120 120
 					$member = $this->circlesManager->addMember($circle->getSingleId(), $this->cachedFed($userId));
121 121
 					if ($rowM['role'] === '1') {
122 122
 						$this->circlesManager->levelMember($member->getId(), Member::LEVEL_ADMIN);
123 123
 					}
124 124
 				} catch (\Exception $e) {
125
-					$this->output->writeln('<error>' . get_class($e) . ' ' . $e->getMessage() . '</error>');
125
+					$this->output->writeln('<error>'.get_class($e).' '.$e->getMessage().'</error>');
126 126
 					$this->logger->log(2, 'error while migrating custom group member', ['exception' => $e]);
127 127
 				}
128 128
 			}
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
 			->where($update->expr()->in('id', $update->createNamedParameter($shareIds, IQueryBuilder::PARAM_INT_ARRAY)));
159 159
 
160 160
 		$count = $update->executeStatement();
161
-		$this->output->writeln('> ' . $count . ' shares updated');
161
+		$this->output->writeln('> '.$count.' shares updated');
162 162
 
163 163
 		$this->fixShareChildren($shareIds, $memberIds);
164 164
 	}
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
 			$count += $update->executeStatement();
199 199
 		}
200 200
 
201
-		$this->output->writeln('> ' . $count . ' children shares updated');
201
+		$this->output->writeln('> '.$count.' children shares updated');
202 202
 	}
203 203
 
204 204
 
Please login to merge, or discard this patch.
lib/Command/MembersAdd.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 		} catch (FederatedItemException $e) {
110 110
 			if ($input->getOption('status-code')) {
111 111
 				throw new FederatedItemException(
112
-					' [' . get_class($e) . ', ' . $e->getStatus() . ']' . "\n" . $e->getMessage()
112
+					' ['.get_class($e).', '.$e->getStatus().']'."\n".$e->getMessage()
113 113
 				);
114 114
 			}
115 115
 
@@ -148,10 +148,10 @@  discard block
 block discarded – undo
148 148
 		try {
149 149
 			$users = $this->retrieveJson($request);
150 150
 		} catch (
151
-			RequestContentException|
152
-			RequestNetworkException|
153
-			RequestResultSizeException|
154
-			RequestServerException|
151
+			RequestContentException |
152
+			RequestNetworkException |
153
+			RequestResultSizeException |
154
+			RequestServerException |
155 155
 			RequestResultNotJsonException $e
156 156
 		) {
157 157
 			return '';
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 				$instance = $host;
170 170
 			}
171 171
 
172
-			$result[] = $user['userid']['value'] . ' <info>@' . $host . '</info>';
172
+			$result[] = $user['userid']['value'].' <info>@'.$host.'</info>';
173 173
 		}
174 174
 
175 175
 		//		if ($userId === '') {
Please login to merge, or discard this patch.
lib/Command/MembersList.php 1 patch
Spacing   +16 added lines, -17 removed lines patch added patch discarded remove patch
@@ -167,11 +167,11 @@  discard block
 block discarded – undo
167 167
 			$this->federatedUserService->commandLineInitiator($initiator, $initiatorType, $circleId, true);
168 168
 			$circle = $this->circleService->getCircle($circleId);
169 169
 
170
-			$output->writeln('<info>Name</info>: ' . $circle->getName());
170
+			$output->writeln('<info>Name</info>: '.$circle->getName());
171 171
 			$owner = $circle->getOwner();
172
-			$output->writeln('<info>Owner</info>: ' . $owner->getUserId() . '@' . $owner->getInstance());
172
+			$output->writeln('<info>Owner</info>: '.$owner->getUserId().'@'.$owner->getInstance());
173 173
 			$type = implode(', ', Circle::getCircleFlags($circle, Circle::FLAGS_LONG));
174
-			$output->writeln('<info>Config</info>: ' . $type);
174
+			$output->writeln('<info>Config</info>: '.$type);
175 175
 			$output->writeln(' ');
176 176
 
177 177
 			$tree = new TreeNode(null, new SimpleDataStore(['circle' => $circle]));
@@ -236,8 +236,7 @@  discard block
 block discarded – undo
236 236
 						$member,
237 237
 						$this->input->getOption('display-name')
238 238
 					),
239
-					($level > 0) ? Member::$DEF_LEVEL[$level] :
240
-						'(' . strtolower($member->getStatus()) . ')',
239
+					($level > 0) ? Member::$DEF_LEVEL[$level] : '('.strtolower($member->getStatus()).')',
241 240
 					($member->hasInvitedBy()) ? $this->configService->displayFederatedUser(
242 241
 						$member->getInvitedBy(),
243 242
 						$this->input->getOption('display-name')
@@ -327,7 +326,7 @@  discard block
 block discarded – undo
327 326
 							$circle = $this->remoteService->getCircleFromInstance(
328 327
 								$member->getSingleId(), $member->getInstance(), $data
329 328
 							);
330
-						} catch (CircleNotFoundException|RemoteInstanceException $e) {
329
+						} catch (CircleNotFoundException | RemoteInstanceException $e) {
331 330
 						}
332 331
 					} else {
333 332
 						$this->federatedUserService->commandLineInitiator(
@@ -403,14 +402,14 @@  discard block
 block discarded – undo
403 402
 				$member = $data->gObj('member', Member::class);
404 403
 
405 404
 				if ($lineNumber === 1) {
406
-					$line .= '<info>' . $member->getSingleId() . '</info>';
405
+					$line .= '<info>'.$member->getSingleId().'</info>';
407 406
 					if (!$this->configService->isLocalInstance($member->getInstance())) {
408
-						$line .= '@' . $member->getInstance();
407
+						$line .= '@'.$member->getInstance();
409 408
 					}
410
-					$line .= ' (' . Member::$DEF_LEVEL[$member->getLevel()] . ')';
409
+					$line .= ' ('.Member::$DEF_LEVEL[$member->getLevel()].')';
411 410
 
412
-					$line .= ' <info>MemberId</info>: ' . $member->getId();
413
-					$line .= ' <info>Name</info>: ' . $this->configService->displayFederatedUser(
411
+					$line .= ' <info>MemberId</info>: '.$member->getId();
412
+					$line .= ' <info>Name</info>: '.$this->configService->displayFederatedUser(
414 413
 						$member,
415 414
 						$this->input->getOption('display-name')
416 415
 					);
@@ -418,7 +417,7 @@  discard block
 block discarded – undo
418 417
 						$line .= ' <info>Source</info>: '
419 418
 								 . Circle::$DEF_SOURCE[$member->getBasedOn()->getSource()];
420 419
 					} else {
421
-						$line .= ' <info>Type</info>: ' . Member::$TYPE[$member->getUserType()];
420
+						$line .= ' <info>Type</info>: '.Member::$TYPE[$member->getUserType()];
422 421
 					}
423 422
 				}
424 423
 
@@ -431,21 +430,21 @@  discard block
 block discarded – undo
431 430
 						return $line;
432 431
 					}
433 432
 					$owner = $circle->getOwner();
434
-					$line .= '<info>Owner</info>: ' . $owner->getUserId() . '@' . $owner->getInstance();
433
+					$line .= '<info>Owner</info>: '.$owner->getUserId().'@'.$owner->getInstance();
435 434
 					$type = implode(', ', Circle::getCircleFlags($circle, Circle::FLAGS_LONG));
436
-					$line .= ($type === '') ? '' : ' <info>Config</info>: ' . $type;
435
+					$line .= ($type === '') ? '' : ' <info>Config</info>: '.$type;
437 436
 				}
438 437
 			} else {
439 438
 				if ($lineNumber === 1 && !is_null($circle)) {
440
-					$line .= '<info>' . $circle->getSingleId() . '</info>';
439
+					$line .= '<info>'.$circle->getSingleId().'</info>';
441 440
 					if (!$this->configService->isLocalInstance($circle->getInstance())) {
442
-						$line .= '@' . $circle->getInstance();
441
+						$line .= '@'.$circle->getInstance();
443 442
 					}
444 443
 				}
445 444
 			}
446 445
 
447 446
 			return $line;
448
-		} catch (InvalidItemException|ItemNotFoundException|UnknownTypeException $e) {
447
+		} catch (InvalidItemException | ItemNotFoundException | UnknownTypeException $e) {
449 448
 		}
450 449
 
451 450
 		return '';
Please login to merge, or discard this patch.
lib/Command/CirclesTest.php 1 patch
Spacing   +66 added lines, -66 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
 
184 184
 		// get the singleId of a Group
185 185
 		$federatedUser = $circlesManager->getFederatedUser('testGroup', Member::TYPE_GROUP);
186
-		echo 'singleId: ' . $federatedUser->getSingleId() . "\n";
186
+		echo 'singleId: '.$federatedUser->getSingleId()."\n";
187 187
 
188 188
 		//		$federatedUser->getMemberships();
189 189
 
@@ -222,8 +222,8 @@  discard block
 block discarded – undo
222 222
 
223 223
 
224 224
 		$members = array_map(
225
-			function (Member $member): string {
226
-				return $member->getUserId() . ' ' . $member->getSingleId() . '   - ' . $member->getUserType();
225
+			function(Member $member): string {
226
+				return $member->getUserId().' '.$member->getSingleId().'   - '.$member->getUserType();
227 227
 			}, $circle->getInheritedMembers()
228 228
 		);
229 229
 
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
 			} catch (Exception $e) {
310 310
 				if ($this->pOn) {
311 311
 					$message = ($e->getMessage() !== '') ? $e->getMessage() : get_class($e);
312
-					$this->output->writeln('<error>' . $message . '</error>');
312
+					$this->output->writeln('<error>'.$message.'</error>');
313 313
 				} else {
314 314
 					throw $e;
315 315
 				}
@@ -393,7 +393,7 @@  discard block
 block discarded – undo
393 393
 	 */
394 394
 	private function loadConfiguration() {
395 395
 		$this->p('Loading configuration');
396
-		$configuration = file_get_contents(__DIR__ . '/../../testConfiguration.json');
396
+		$configuration = file_get_contents(__DIR__.'/../../testConfiguration.json');
397 397
 		$this->config = json_decode($configuration, true);
398 398
 		$this->r(true, 'testConfiguration.json');
399 399
 
@@ -426,22 +426,22 @@  discard block
 block discarded – undo
426 426
 		$this->r();
427 427
 
428 428
 		foreach ($this->getInstances() as $instance) {
429
-			$this->p('Creating users on ' . $instance);
429
+			$this->p('Creating users on '.$instance);
430 430
 			foreach ($this->getConfigArray($instance, 'users') as $userId) {
431 431
 				$this->pm($userId);
432 432
 				$this->occ(
433
-					$instance, 'user:add --password-from-env ' . $userId, false, false,
433
+					$instance, 'user:add --password-from-env '.$userId, false, false,
434 434
 					['OC_PASS' => 'testtest']
435 435
 				);
436 436
 			}
437 437
 			$this->r();
438 438
 
439 439
 			foreach ($this->getConfigArray($instance, 'groups') as $groupId => $users) {
440
-				$this->p('Creating group <info>' . $groupId . '</info> on <info>' . $instance . '</info>');
441
-				$this->occ($instance, 'group:add ' . $groupId, false, false);
440
+				$this->p('Creating group <info>'.$groupId.'</info> on <info>'.$instance.'</info>');
441
+				$this->occ($instance, 'group:add '.$groupId, false, false);
442 442
 				foreach ($users as $userId) {
443 443
 					$this->pm($userId);
444
-					$this->occ($instance, 'group:adduser ' . $groupId . ' ' . $userId, true, false);
444
+					$this->occ($instance, 'group:adduser '.$groupId.' '.$userId, true, false);
445 445
 				}
446 446
 				$this->r();
447 447
 			}
@@ -475,7 +475,7 @@  discard block
 block discarded – undo
475 475
 		foreach ($this->getInstances(true) as $instance) {
476 476
 			$this->pm($instance);
477 477
 			foreach ($this->getConfigArray($instance, 'config') as $k => $v) {
478
-				$this->occ($instance, 'config:app:set --value ' . $v . ' circles ' . $k, true, false);
478
+				$this->occ($instance, 'config:app:set --value '.$v.' circles '.$k, true, false);
479 479
 			}
480 480
 		}
481 481
 		$this->r();
@@ -488,7 +488,7 @@  discard block
 block discarded – undo
488 488
 	 */
489 489
 	private function confirmVersion() {
490 490
 		$version = $this->configService->getAppValue('installed_version');
491
-		$this->p('Confirming version <info>' . $version . '</info>');
491
+		$this->p('Confirming version <info>'.$version.'</info>');
492 492
 		foreach ($this->getInstances(false) as $instance) {
493 493
 			$this->pm($instance);
494 494
 			$capabilities = $this->occ($instance, 'circles:check --capabilities');
@@ -539,12 +539,12 @@  discard block
 block discarded – undo
539 539
 	 */
540 540
 	private function statusFreshInstances() {
541 541
 		foreach ($this->getInstances() as $instanceId) {
542
-			$this->p('Circles on ' . $instanceId);
542
+			$this->p('Circles on '.$instanceId);
543 543
 			$result = $this->occ($instanceId, 'circles:manage:list --all');
544 544
 			$expectedSize = sizeof($this->getConfigArray($instanceId, 'groups'))
545 545
 							+ sizeof($this->getConfigArray($instanceId, 'users'))
546 546
 							+ 1;
547
-			$this->r((sizeof($result) === $expectedSize), sizeof($result) . ' circles');
547
+			$this->r((sizeof($result) === $expectedSize), sizeof($result).' circles');
548 548
 
549 549
 			$membersList = $groupsList = [];
550 550
 			foreach ($result as $item) {
@@ -563,12 +563,12 @@  discard block
 block discarded – undo
563 563
 			$instance = $this->getConfig($instanceId, 'config.frontal_cloud_id');
564 564
 
565 565
 			foreach ($this->getConfigArray($instanceId, 'users') as $userId) {
566
-				$this->p('Checking Single Circle for <comment>' . $userId . '@' . $instance . '</comment>');
566
+				$this->p('Checking Single Circle for <comment>'.$userId.'@'.$instance.'</comment>');
567 567
 				$circle = $this->getSingleCircleForMember($membersList, $userId, $instance);
568 568
 
569 569
 				$compareToOwnerBasedOn = new Circle();
570 570
 				$compareToOwnerBasedOn->setConfig(Circle::CFG_SINGLE)
571
-					->setName('user:' . $userId . ':{CIRCLEID}')
571
+					->setName('user:'.$userId.':{CIRCLEID}')
572 572
 					->setDisplayName($userId);
573 573
 
574 574
 				$compareToOwner = new Member();
@@ -586,7 +586,7 @@  discard block
 block discarded – undo
586 586
 				$compareTo = new Circle();
587 587
 				$compareTo->setOwner($compareToOwner)
588 588
 					->setConfig(Circle::CFG_SINGLE)
589
-					->setName('user:' . $userId . ':{CIRCLEID}')
589
+					->setName('user:'.$userId.':{CIRCLEID}')
590 590
 					->setDisplayName($userId);
591 591
 
592 592
 				$this->confirmCircleData($circle, $compareTo);
@@ -623,8 +623,8 @@  discard block
 block discarded – undo
623 623
 			$this->r(true, $circle->getSingleId());
624 624
 
625 625
 			foreach ($this->getConfigArray($instanceId, 'groups') as $groupId => $members) {
626
-				$this->p('Checking Circle for <comment>' . $groupId . '@' . $instance . '</comment>');
627
-				$circle = $this->getCircleFromList($groupsList, 'group:' . $groupId);
626
+				$this->p('Checking Circle for <comment>'.$groupId.'@'.$instance.'</comment>');
627
+				$circle = $this->getCircleFromList($groupsList, 'group:'.$groupId);
628 628
 
629 629
 				$appCircle = $this->getSingleCircleForMember($membersList, 'circles', $instance);
630 630
 				$appOwner = $appCircle->getOwner();
@@ -648,7 +648,7 @@  discard block
 block discarded – undo
648 648
 				$compareTo = new Circle();
649 649
 				$compareTo->setOwner($compareToOwner)
650 650
 					->setConfig(Circle::CFG_SYSTEM | Circle::CFG_NO_OWNER | Circle::CFG_HIDDEN)
651
-					->setName('group:' . $groupId)
651
+					->setName('group:'.$groupId)
652 652
 					->setDisplayName($groupId);
653 653
 
654 654
 				$this->confirmCircleData($circle, $compareTo);
@@ -665,12 +665,12 @@  discard block
 block discarded – undo
665 665
 	 */
666 666
 	private function createRemoteLink() {
667 667
 		foreach ($this->getInstances() as $instanceId) {
668
-			$this->p('Init remote link from ' . $instanceId);
668
+			$this->p('Init remote link from '.$instanceId);
669 669
 			$links = $this->getConfigArray($instanceId, 'remote');
670 670
 			foreach ($links as $link => $type) {
671 671
 				$remote = $this->getConfig($link, 'config.frontal_cloud_id');
672
-				$this->pm($remote . '(' . $type . ')');
673
-				$this->occ($instanceId, 'circles:remote ' . $remote . ' --type ' . $type . ' --yes');
672
+				$this->pm($remote.'('.$type.')');
673
+				$this->occ($instanceId, 'circles:remote '.$remote.' --type '.$type.' --yes');
674 674
 			}
675 675
 			$this->r();
676 676
 		}
@@ -684,7 +684,7 @@  discard block
 block discarded – undo
684 684
 	private function buildingLocalDatabase() {
685 685
 		$this->circles = $this->federatedUsers = [];
686 686
 		foreach ($this->getInstances() as $instanceId) {
687
-			$this->p('Retrieving Circles from ' . $instanceId);
687
+			$this->p('Retrieving Circles from '.$instanceId);
688 688
 			$circles = $this->occ($instanceId, 'circles:manage:list --all');
689 689
 			foreach ($circles as $item) {
690 690
 				/** @var Circle $circle */
@@ -719,7 +719,7 @@  discard block
 block discarded – undo
719 719
 		$name = self::$TEST_CIRCLES[0];
720 720
 		$owner = $this->getInstanceUsers($localInstanceId)[1];
721 721
 		$dataCreatedCircle001 =
722
-			$this->occ($localInstanceId, 'circles:manage:create --type user ' . $owner . ' ' . $name);
722
+			$this->occ($localInstanceId, 'circles:manage:create --type user '.$owner.' '.$name);
723 723
 		/** @var Circle $createdCircle */
724 724
 		$createdCircle = $this->deserialize($dataCreatedCircle001, Circle::class);
725 725
 		$this->circles[$localInstanceId][$createdCircle->getName()] = $createdCircle;
@@ -751,7 +751,7 @@  discard block
 block discarded – undo
751 751
 
752 752
 
753 753
 		$this->p('Comparing local stored data');
754
-		$dataCircle = $this->occ($localInstanceId, 'circle:manage:details ' . $createdCircle->getSingleId());
754
+		$dataCircle = $this->occ($localInstanceId, 'circle:manage:details '.$createdCircle->getSingleId());
755 755
 
756 756
 		/** @var Circle $tmpCircle */
757 757
 		$tmpCircle = $this->deserialize($dataCircle, Circle::class);
@@ -760,9 +760,9 @@  discard block
 block discarded – undo
760 760
 
761 761
 		$links = $this->getConfigArray('global-scale-1', 'remote');
762 762
 		foreach ($this->getInstances(false) as $instanceId) {
763
-			$this->p('Comparing data stored on ' . $instanceId);
763
+			$this->p('Comparing data stored on '.$instanceId);
764 764
 			$dataCircle =
765
-				$this->occ($instanceId, 'circle:manage:details ' . $createdCircle->getSingleId(), false);
765
+				$this->occ($instanceId, 'circle:manage:details '.$createdCircle->getSingleId(), false);
766 766
 
767 767
 			if ($instanceId === $localInstanceId || $links[$instanceId] === 'GlobalScale') {
768 768
 				/** @var Circle $tmpCircle */
@@ -815,11 +815,11 @@  discard block
 block discarded – undo
815 815
 		$name = self::$TEST_CIRCLES[0];
816 816
 		$circle = $this->getCircleByName($localInstanceId, $name);
817 817
 		$userId = $this->getInstanceUsers($localInstanceId)[6];
818
-		$userCircle = $this->getCircleByName($localInstanceId, 'user:' . $userId);
818
+		$userCircle = $this->getCircleByName($localInstanceId, 'user:'.$userId);
819 819
 		$user = $userCircle->getOwner();
820 820
 		$dataAddedMember =
821 821
 			$this->occ(
822
-				$localInstanceId, 'circles:members:add ' . $circle->getSingleId() . ' ' . $user->getSingleId()
822
+				$localInstanceId, 'circles:members:add '.$circle->getSingleId().' '.$user->getSingleId()
823 823
 			);
824 824
 		/** @var Member $addedMember */
825 825
 		$addedMember = $this->deserialize($dataAddedMember, Member::class);
@@ -839,11 +839,11 @@  discard block
 block discarded – undo
839 839
 
840 840
 		$circle = $this->getCircleByName($localInstanceId, $circleName);
841 841
 		$userId = $this->getInstanceUsers($localInstanceId)[6];
842
-		$userCircle = $this->getCircleByName($localInstanceId, 'user:' . $userId);
842
+		$userCircle = $this->getCircleByName($localInstanceId, 'user:'.$userId);
843 843
 		$user = $userCircle->getOwner();
844 844
 		$dataAddedMember =
845 845
 			$this->occ(
846
-				$localInstanceId, 'circles:members:add ' . $circle->getSingleId() . ' ' . $user->getSingleId()
846
+				$localInstanceId, 'circles:members:add '.$circle->getSingleId().' '.$user->getSingleId()
847 847
 			);
848 848
 		/** @var Member $addedMember */
849 849
 		$addedMember = $this->deserialize($dataAddedMember, Member::class);
@@ -937,13 +937,13 @@  discard block
 block discarded – undo
937 937
 			];
938 938
 		}
939 939
 
940
-		$this->compare($compareTo->getSingleId(), $circle->getSingleId(), $prefix . '.id', $params);
941
-		$this->compare($compareTo->getName(), $circle->getName(), $prefix . '.name', $params);
940
+		$this->compare($compareTo->getSingleId(), $circle->getSingleId(), $prefix.'.id', $params);
941
+		$this->compare($compareTo->getName(), $circle->getName(), $prefix.'.name', $params);
942 942
 		$this->compare(
943
-			$compareTo->getDisplayName(), $circle->getDisplayName(), $prefix . '.displayName', $params
943
+			$compareTo->getDisplayName(), $circle->getDisplayName(), $prefix.'.displayName', $params
944 944
 		);
945
-		$this->compareInt($compareTo->getConfig(), $circle->getConfig(), $prefix . '.config', true);
946
-		$this->compareInt($compareTo->getSource(), $circle->getSource(), $prefix . '.source');
945
+		$this->compareInt($compareTo->getConfig(), $circle->getConfig(), $prefix.'.config', true);
946
+		$this->compareInt($compareTo->getSource(), $circle->getSource(), $prefix.'.source');
947 947
 
948 948
 		if ($compareTo->hasOwner()) {
949 949
 			$compareToOwner = $compareTo->getOwner();
@@ -953,7 +953,7 @@  discard block
 block discarded – undo
953 953
 					throw new Exception('empty owner');
954 954
 				}
955 955
 				if ($owner->getCircleId() !== $circle->getSingleId()) {
956
-					throw new Exception($prefix . '.owner.circleId is different than ' . $prefix . '.id');
956
+					throw new Exception($prefix.'.owner.circleId is different than '.$prefix.'.id');
957 957
 				}
958 958
 				$this->confirmMemberData($owner, $compareToOwner, 'owner', false, $params);
959 959
 			}
@@ -966,7 +966,7 @@  discard block
 block discarded – undo
966 966
 				}
967 967
 				$initiator = $circle->getInitiator();
968 968
 				if ($initiator->getCircleId() !== $circle->getSingleId()) {
969
-					throw new Exception($prefix . '.initiator.circleId is different than ' . $prefix . '.id');
969
+					throw new Exception($prefix.'.initiator.circleId is different than '.$prefix.'.id');
970 970
 				}
971 971
 				$this->confirmMemberData($initiator, $compareToInitiator, 'owner', false, $params);
972 972
 			}
@@ -993,27 +993,27 @@  discard block
 block discarded – undo
993 993
 		bool $versa = false,
994 994
 		array $params = [],
995 995
 	) {
996
-		$this->compare($compareTo->getId(), $member->getId(), $prefix . '.id', $params);
997
-		$this->compare($compareTo->getCircleId(), $member->getCircleId(), $prefix . '.circleId', $params);
998
-		$this->compare($compareTo->getSingleId(), $member->getSingleId(), $prefix . '.singleId', $params);
999
-		$this->compare($compareTo->getUserId(), $member->getUserId(), $prefix . '.userId', $params);
996
+		$this->compare($compareTo->getId(), $member->getId(), $prefix.'.id', $params);
997
+		$this->compare($compareTo->getCircleId(), $member->getCircleId(), $prefix.'.circleId', $params);
998
+		$this->compare($compareTo->getSingleId(), $member->getSingleId(), $prefix.'.singleId', $params);
999
+		$this->compare($compareTo->getUserId(), $member->getUserId(), $prefix.'.userId', $params);
1000 1000
 		$this->compare(
1001
-			$compareTo->getDisplayName(), $member->getDisplayName(), $prefix . '.displayName', $params
1001
+			$compareTo->getDisplayName(), $member->getDisplayName(), $prefix.'.displayName', $params
1002 1002
 		);
1003
-		$this->compareInt($compareTo->getUserType(), $member->getUserType(), $prefix . '.userType');
1004
-		$this->compare($compareTo->getInstance(), $member->getInstance(), $prefix . '.instance', $params);
1005
-		$this->compareInt($compareTo->getLevel(), $member->getLevel(), $prefix . '.level', true);
1006
-		$this->compare($compareTo->getStatus(), $member->getStatus(), $prefix . '.status', $params);
1003
+		$this->compareInt($compareTo->getUserType(), $member->getUserType(), $prefix.'.userType');
1004
+		$this->compare($compareTo->getInstance(), $member->getInstance(), $prefix.'.instance', $params);
1005
+		$this->compareInt($compareTo->getLevel(), $member->getLevel(), $prefix.'.level', true);
1006
+		$this->compare($compareTo->getStatus(), $member->getStatus(), $prefix.'.status', $params);
1007 1007
 
1008 1008
 		if ($compareTo->hasBasedOn()) {
1009 1009
 			if (!$member->hasBasedOn()) {
1010
-				throw new Exception('empty ' . $prefix . '.basedOn');
1010
+				throw new Exception('empty '.$prefix.'.basedOn');
1011 1011
 			}
1012 1012
 			$basedOn = $member->getBasedOn();
1013 1013
 			$this->confirmCircleData(
1014 1014
 				$basedOn,
1015 1015
 				$compareTo->getBasedOn(),
1016
-				$prefix . '.basedOn',
1016
+				$prefix.'.basedOn',
1017 1017
 				false,
1018 1018
 				$params
1019 1019
 			);
@@ -1032,7 +1032,7 @@  discard block
 block discarded – undo
1032 1032
 	private function compare(string $expected, string $compare, string $def, array $params) {
1033 1033
 		if ($expected !== ''
1034 1034
 			&& $this->feedStringWithParams($expected, $params) !== $compare) {
1035
-			throw new Exception($def . ': ' . $compare . ' (' . $expected . ')');
1035
+			throw new Exception($def.': '.$compare.' ('.$expected.')');
1036 1036
 		}
1037 1037
 	}
1038 1038
 
@@ -1048,7 +1048,7 @@  discard block
 block discarded – undo
1048 1048
 	private function compareInt(int $expected, int $compare, string $def, bool $force = false) {
1049 1049
 		if (($expected > 0 || ($force && $expected >= 0))
1050 1050
 			&& $expected !== $compare) {
1051
-			throw new Exception('wrong ' . $def . ': ' . $compare . ' (' . $expected . ')');
1051
+			throw new Exception('wrong '.$def.': '.$compare.' ('.$expected.')');
1052 1052
 		}
1053 1053
 	}
1054 1054
 
@@ -1084,7 +1084,7 @@  discard block
 block discarded – undo
1084 1084
 			}
1085 1085
 		}
1086 1086
 
1087
-		throw new CircleNotFoundException('cannot find ' . $userId . ' in the list of Single Circle');
1087
+		throw new CircleNotFoundException('cannot find '.$userId.' in the list of Single Circle');
1088 1088
 	}
1089 1089
 
1090 1090
 
@@ -1102,7 +1102,7 @@  discard block
 block discarded – undo
1102 1102
 		}
1103 1103
 
1104 1104
 		throw new CircleNotFoundException(
1105
-			'cannot extract \'' . $name . '\' from the list of generated Circles'
1105
+			'cannot extract \''.$name.'\' from the list of generated Circles'
1106 1106
 		);
1107 1107
 	}
1108 1108
 
@@ -1122,7 +1122,7 @@  discard block
 block discarded – undo
1122 1122
 		}
1123 1123
 
1124 1124
 		throw new CircleNotFoundException(
1125
-			'cannot extract  \'' . $name . '\' from the list of provided Circles'
1125
+			'cannot extract  \''.$name.'\' from the list of provided Circles'
1126 1126
 		);
1127 1127
 	}
1128 1128
 
@@ -1167,7 +1167,7 @@  discard block
 block discarded – undo
1167 1167
 			}
1168 1168
 		}
1169 1169
 
1170
-		throw new ItemNotFoundException($instance . ' not found');
1170
+		throw new ItemNotFoundException($instance.' not found');
1171 1171
 	}
1172 1172
 
1173 1173
 
@@ -1202,7 +1202,7 @@  discard block
 block discarded – undo
1202 1202
 	): ?array {
1203 1203
 		$configInstance = $this->getConfigInstance($instance);
1204 1204
 		$path = $this->get('path', $configInstance);
1205
-		$occ = rtrim($path, '/') . '/occ';
1205
+		$occ = rtrim($path, '/').'/occ';
1206 1206
 
1207 1207
 		$command = array_merge([$occ], explode(' ', $cmd));
1208 1208
 		if ($jsonAsOutput) {
@@ -1212,7 +1212,7 @@  discard block
 block discarded – undo
1212 1212
 		$process->run(null, $env);
1213 1213
 
1214 1214
 		if ($exceptionOnFail && !$process->isSuccessful()) {
1215
-			throw new Exception(implode(' ', $command) . ' failed');
1215
+			throw new Exception(implode(' ', $command).' failed');
1216 1216
 		}
1217 1217
 
1218 1218
 		$output = json_decode($process->getOutput(), true);
@@ -1235,7 +1235,7 @@  discard block
 block discarded – undo
1235 1235
 	 */
1236 1236
 	private function t(string $title): void {
1237 1237
 		$this->output->writeln('');
1238
-		$this->output->writeln('<comment>### ' . $title . '</comment>');
1238
+		$this->output->writeln('<comment>### '.$title.'</comment>');
1239 1239
 		$this->output->writeln('');
1240 1240
 	}
1241 1241
 
@@ -1244,14 +1244,14 @@  discard block
 block discarded – undo
1244 1244
 	 */
1245 1245
 	private function p(string $processing): void {
1246 1246
 		$this->pOn = true;
1247
-		$this->output->write('- ' . $processing . ': ');
1247
+		$this->output->write('- '.$processing.': ');
1248 1248
 	}
1249 1249
 
1250 1250
 	/**
1251 1251
 	 * @param string $more
1252 1252
 	 */
1253 1253
 	private function pm(string $more): void {
1254
-		$this->output->write($more . ' ');
1254
+		$this->output->write($more.' ');
1255 1255
 	}
1256 1256
 
1257 1257
 	/**
@@ -1261,9 +1261,9 @@  discard block
 block discarded – undo
1261 1261
 	private function r(bool $result = true, string $info = ''): void {
1262 1262
 		$this->pOn = false;
1263 1263
 		if ($result) {
1264
-			$this->output->writeln('<info>' . (($info !== '') ? $info : 'done') . '</info>');
1264
+			$this->output->writeln('<info>'.(($info !== '') ? $info : 'done').'</info>');
1265 1265
 		} else {
1266
-			$this->output->writeln('<error>' . (($info !== '') ? $info : 'done') . '</error>');
1266
+			$this->output->writeln('<error>'.(($info !== '') ? $info : 'done').'</error>');
1267 1267
 		}
1268 1268
 	}
1269 1269
 
@@ -1285,16 +1285,16 @@  discard block
 block discarded – undo
1285 1285
 		$dataAddedMember =
1286 1286
 			$this->occ(
1287 1287
 				$instanceId,
1288
-				'circles:members:add ' . $circle->getSingleId() . ' ' . $userId . ' --type ' . $type
1288
+				'circles:members:add '.$circle->getSingleId().' '.$userId.' --type '.$type
1289 1289
 			);
1290 1290
 		/** @var Member $addedMember */
1291 1291
 		$addedMember = $this->deserialize($dataAddedMember, Member::class);
1292 1292
 
1293 1293
 
1294
-		echo 'ADDEDMEMBER: ' . json_encode($addedMember, JSON_PRETTY_PRINT) . "\n";
1294
+		echo 'ADDEDMEMBER: '.json_encode($addedMember, JSON_PRETTY_PRINT)."\n";
1295 1295
 
1296 1296
 		$federatedUser = $this->federatedUsers[$instanceId][$userId];
1297
-		echo 'FEDERATEDUER: ' . json_encode($federatedUser, JSON_PRETTY_PRINT) . "\n";
1297
+		echo 'FEDERATEDUER: '.json_encode($federatedUser, JSON_PRETTY_PRINT)."\n";
1298 1298
 
1299 1299
 		return $addedMember;
1300 1300
 	}
Please login to merge, or discard this patch.