@@ -398,7 +398,7 @@ discard block |
||
| 398 | 398 | * @param Circle $circle |
| 399 | 399 | */ |
| 400 | 400 | public function updatePasswordOnShares(Circle $circle) { |
| 401 | - $this->miscService->log('---' . $circle->getPasswordSingle()); |
|
| 401 | + $this->miscService->log('---'.$circle->getPasswordSingle()); |
|
| 402 | 402 | $this->tokensRequest->updateSinglePassword($circle->getUniqueId(), $circle->getPasswordSingle()); |
| 403 | 403 | } |
| 404 | 404 | |
@@ -538,24 +538,24 @@ discard block |
||
| 538 | 538 | switch ($type) { |
| 539 | 539 | case Circle::CIRCLES_PERSONAL: |
| 540 | 540 | return $urlGen->getAbsoluteURL( |
| 541 | - $urlGen->imagePath(Application::APP_NAME, 'personal' . $ext) |
|
| 541 | + $urlGen->imagePath(Application::APP_NAME, 'personal'.$ext) |
|
| 542 | 542 | ); |
| 543 | 543 | case Circle::CIRCLES_CLOSED: |
| 544 | 544 | return $urlGen->getAbsoluteURL( |
| 545 | - $urlGen->imagePath(Application::APP_NAME, 'closed' . $ext) |
|
| 545 | + $urlGen->imagePath(Application::APP_NAME, 'closed'.$ext) |
|
| 546 | 546 | ); |
| 547 | 547 | case Circle::CIRCLES_SECRET: |
| 548 | 548 | return $urlGen->getAbsoluteURL( |
| 549 | - $urlGen->imagePath(Application::APP_NAME, 'secret' . $ext) |
|
| 549 | + $urlGen->imagePath(Application::APP_NAME, 'secret'.$ext) |
|
| 550 | 550 | ); |
| 551 | 551 | case Circle::CIRCLES_PUBLIC: |
| 552 | 552 | return $urlGen->getAbsoluteURL( |
| 553 | - $urlGen->imagePath(Application::APP_NAME, 'black_circle' . $ext) |
|
| 553 | + $urlGen->imagePath(Application::APP_NAME, 'black_circle'.$ext) |
|
| 554 | 554 | ); |
| 555 | 555 | } |
| 556 | 556 | |
| 557 | 557 | return $urlGen->getAbsoluteURL( |
| 558 | - $urlGen->imagePath(Application::APP_NAME, 'black_circle' . $ext) |
|
| 558 | + $urlGen->imagePath(Application::APP_NAME, 'black_circle'.$ext) |
|
| 559 | 559 | ); |
| 560 | 560 | } |
| 561 | 561 | |