Completed
Pull Request — master (#668)
by Maxence
54s
created
lib/Service/CirclesService.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -577,24 +577,24 @@
 block discarded – undo
577 577
 		switch ($type) {
578 578
 			case DeprecatedCircle::CIRCLES_PERSONAL:
579 579
 				return $urlGen->getAbsoluteURL(
580
-					$urlGen->imagePath(Application::APP_ID, 'personal' . $ext)
580
+					$urlGen->imagePath(Application::APP_ID, 'personal'.$ext)
581 581
 				);
582 582
 			case DeprecatedCircle::CIRCLES_CLOSED:
583 583
 				return $urlGen->getAbsoluteURL(
584
-					$urlGen->imagePath(Application::APP_ID, 'closed' . $ext)
584
+					$urlGen->imagePath(Application::APP_ID, 'closed'.$ext)
585 585
 				);
586 586
 			case DeprecatedCircle::CIRCLES_SECRET:
587 587
 				return $urlGen->getAbsoluteURL(
588
-					$urlGen->imagePath(Application::APP_ID, 'secret' . $ext)
588
+					$urlGen->imagePath(Application::APP_ID, 'secret'.$ext)
589 589
 				);
590 590
 			case DeprecatedCircle::CIRCLES_PUBLIC:
591 591
 				return $urlGen->getAbsoluteURL(
592
-					$urlGen->imagePath(Application::APP_ID, 'circles' . $ext)
592
+					$urlGen->imagePath(Application::APP_ID, 'circles'.$ext)
593 593
 				);
594 594
 		}
595 595
 
596 596
 		return $urlGen->getAbsoluteURL(
597
-			$urlGen->imagePath(Application::APP_ID, 'circles' . $ext)
597
+			$urlGen->imagePath(Application::APP_ID, 'circles'.$ext)
598 598
 		);
599 599
 	}
600 600
 
Please login to merge, or discard this patch.