Completed
Push — master ( 18d09b...7f99bd )
by David
15s
created
src/Theme/Extensions/ThemeExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.