@@ -54,12 +54,12 @@ |
||
54 | 54 | $name = strstr($name, $dirPrefix); |
55 | 55 | $pos = strpos($name, $dirPrefix); |
56 | 56 | if ($pos !== false) { |
57 | - $name = (string)substr_replace($name, '', $pos, strlen($dirPrefix)); |
|
57 | + $name = (string) substr_replace($name, '', $pos, strlen($dirPrefix)); |
|
58 | 58 | } |
59 | 59 | $path = FileHelper::createUrl( |
60 | 60 | $settings->criticalPath, |
61 | 61 | $name |
62 | - ) . $settings->criticalSuffix; |
|
62 | + ).$settings->criticalSuffix; |
|
63 | 63 | |
64 | 64 | return $this->getCssInlineTags($path, $attributes); |
65 | 65 | } |
@@ -44,7 +44,7 @@ |
||
44 | 44 | /** |
45 | 45 | * @var string The public URL to use when not using the dev server |
46 | 46 | */ |
47 | - 'serverPublic' => App::env('PRIMARY_SITE_URL') . '/dist/', |
|
47 | + 'serverPublic' => App::env('PRIMARY_SITE_URL').'/dist/', |
|
48 | 48 | |
49 | 49 | /** |
50 | 50 | * @var string|array The JavaScript entry from the manifest.json to inject on Twig error pages |
@@ -46,7 +46,7 @@ |
||
46 | 46 | * @var string|array The JavaScript entry from the manifest.json to inject on Twig error pages |
47 | 47 | * This can be a string or an array of strings |
48 | 48 | */ |
49 | - public string|array $errorEntry = ''; |
|
49 | + public string | array $errorEntry = ''; |
|
50 | 50 | |
51 | 51 | /** |
52 | 52 | * @var string String to be appended to the cache key |
@@ -5,7 +5,7 @@ |
||
5 | 5 | |
6 | 6 | return static function(ECSConfig $ecsConfig): void { |
7 | 7 | $ecsConfig->paths([ |
8 | - __DIR__ . '/src', |
|
8 | + __DIR__.'/src', |
|
9 | 9 | __FILE__, |
10 | 10 | ]); |
11 | 11 | $ecsConfig->parallel(); |