Fix heredoc indentation / codestyle
authorTim Düsterhus <duesterhus@woltlab.com>
Fri, 26 Feb 2021 10:21:52 +0000 (11:21 +0100)
committerTim Düsterhus <duesterhus@woltlab.com>
Fri, 26 Feb 2021 10:21:52 +0000 (11:21 +0100)
wcfsetup/install/files/lib/system/style/FontManager.class.php

index f93d09b555d29e6b9105355ade3e7ace777dbe14..0799dcc33c81bbf0e61fb1a3ff21cfbb1cdbd26d 100644 (file)
@@ -126,7 +126,7 @@ class FontManager extends SingletonFactory
 
                 if (\in_array($filename, $preload)) {
                     $preloadRequests .= \sprintf(
-<<<'EOT'
+                        <<<'EOT'
                     --woltlab-suite-preload: #{preload(
                         %s,
                         $as: "font",
@@ -144,7 +144,7 @@ EOT
                 }
             }
 
-            $css .= "woltlab-suite-preload:root { ${preloadRequests} }";
+            $css .= "woltlab-suite-preload:root { {$preloadRequests} }";
 
             \file_put_contents($this->getCssFilename($family), $css);