Completed
Pull Request — master (#384)
by Tortue
01:48
created
lib/Service/CirclesService.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -532,24 +532,24 @@  discard block
 block discarded – undo
532 532
 		switch ($type) {
533 533
 			case Circle::CIRCLES_PERSONAL:
534 534
 				return $urlGen->getAbsoluteURL(
535
-					$urlGen->imagePath(Application::APP_NAME, 'personal' . $ext)
535
+					$urlGen->imagePath(Application::APP_NAME, 'personal'.$ext)
536 536
 				);
537 537
 			case Circle::CIRCLES_CLOSED:
538 538
 				return $urlGen->getAbsoluteURL(
539
-					$urlGen->imagePath(Application::APP_NAME, 'closed' . $ext)
539
+					$urlGen->imagePath(Application::APP_NAME, 'closed'.$ext)
540 540
 				);
541 541
 			case Circle::CIRCLES_SECRET:
542 542
 				return $urlGen->getAbsoluteURL(
543
-					$urlGen->imagePath(Application::APP_NAME, 'secret' . $ext)
543
+					$urlGen->imagePath(Application::APP_NAME, 'secret'.$ext)
544 544
 				);
545 545
 			case Circle::CIRCLES_PUBLIC:
546 546
 				return $urlGen->getAbsoluteURL(
547
-					$urlGen->imagePath(Application::APP_NAME, 'black_circle' . $ext)
547
+					$urlGen->imagePath(Application::APP_NAME, 'black_circle'.$ext)
548 548
 				);
549 549
 		}
550 550
 
551 551
 		return $urlGen->getAbsoluteURL(
552
-			$urlGen->imagePath(Application::APP_NAME, 'black_circle' . $ext)
552
+			$urlGen->imagePath(Application::APP_NAME, 'black_circle'.$ext)
553 553
 		);
554 554
 	}
555 555
 
@@ -585,7 +585,7 @@  discard block
 block discarded – undo
585 585
 			$circle->getUniqueId(), Member::LEVEL_MEMBER, true
586 586
 		);
587 587
 
588
-		$limit = (int) $circle->getSetting('members_limit');
588
+		$limit = (int)$circle->getSetting('members_limit');
589 589
 		if ($limit === -1) {
590 590
 			return;
591 591
 		}
Please login to merge, or discard this patch.