@@ -577,24 +577,24 @@ |
||
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 |