@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | */ |
14 | 14 | private $themeUrls = []; |
15 | 15 | |
16 | - public function pushThemeUrl(?string $themeUrl): void |
|
16 | + public function pushThemeUrl(?string $themeUrl) : void |
|
17 | 17 | { |
18 | 18 | $this->themeUrls[] = rtrim($themeUrl, '/').'/'; |
19 | 19 | } |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | private function getThemeUrl(): ?string |
27 | 27 | { |
28 | - return $this->themeUrls[count($this->themeUrls)-1]; |
|
28 | + return $this->themeUrls[count($this->themeUrls) - 1]; |
|
29 | 29 | } |
30 | 30 | |
31 | 31 |