@@ -50,14 +50,14 @@ discard block |
||
50 | 50 | public static function fetchManifest(string $manifestPath) |
51 | 51 | { |
52 | 52 | // Grab the manifest |
53 | - $pathOrUrl = (string)Craft::parseEnv($manifestPath); |
|
53 | + $pathOrUrl = (string) Craft::parseEnv($manifestPath); |
|
54 | 54 | $manifest = FileHelper::fetch($pathOrUrl, [JsonHelper::class, 'decodeIfJson']); |
55 | 55 | // If no manifest file is found, log it |
56 | 56 | if ($manifest === null) { |
57 | - Craft::error('Manifest not found at ' . $manifestPath, __METHOD__); |
|
57 | + Craft::error('Manifest not found at '.$manifestPath, __METHOD__); |
|
58 | 58 | } |
59 | 59 | // Ensure we're dealing with an array |
60 | - self::$manifest = (array)$manifest; |
|
60 | + self::$manifest = (array) $manifest; |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | /** |
@@ -264,7 +264,7 @@ discard block |
||
264 | 264 | $filename = implode('.', $filenameParts); |
265 | 265 | } |
266 | 266 | |
267 | - return (string)$filename; |
|
267 | + return (string) $filename; |
|
268 | 268 | } |
269 | 269 | |
270 | 270 | /** |
@@ -211,7 +211,7 @@ discard block |
||
211 | 211 | // Replace the hard-coded dev server URL with whatever they have theirs set to |
212 | 212 | $script = str_replace( |
213 | 213 | 'http://localhost:3000/', |
214 | - rtrim($this->devServerPublic, '/') . '/', |
|
214 | + rtrim($this->devServerPublic, '/').'/', |
|
215 | 215 | $script |
216 | 216 | ); |
217 | 217 | $view->registerScript( |
@@ -230,7 +230,7 @@ discard block |
||
230 | 230 | $view->registerJsFile( |
231 | 231 | $url, |
232 | 232 | array_merge(['type' => 'module'], $scriptTagAttrs), |
233 | - md5($url . JsonHelper::encode($scriptTagAttrs)) |
|
233 | + md5($url.JsonHelper::encode($scriptTagAttrs)) |
|
234 | 234 | ); |
235 | 235 | } |
236 | 236 | |
@@ -351,7 +351,7 @@ discard block |
||
351 | 351 | public function invalidateCaches() |
352 | 352 | { |
353 | 353 | $cache = Craft::$app->getCache(); |
354 | - TagDependency::invalidate($cache, FileHelper::CACHE_TAG . $this->cacheKeySuffix); |
|
354 | + TagDependency::invalidate($cache, FileHelper::CACHE_TAG.$this->cacheKeySuffix); |
|
355 | 355 | Craft::info('All Vite caches cleared', __METHOD__); |
356 | 356 | } |
357 | 357 | |
@@ -394,7 +394,7 @@ discard block |
||
394 | 394 | // Replace the hard-coded dev server URL with whatever they have theirs set to |
395 | 395 | $script = str_replace( |
396 | 396 | 'http://localhost:3000/', |
397 | - rtrim($this->devServerPublic, '/') . '/', |
|
397 | + rtrim($this->devServerPublic, '/').'/', |
|
398 | 398 | $script |
399 | 399 | ); |
400 | 400 | $lines[] = HtmlHelper::script( |
@@ -477,7 +477,7 @@ discard block |
||
477 | 477 | $view->registerJsFile( |
478 | 478 | $url, |
479 | 479 | $tag['options'], |
480 | - md5($url . JsonHelper::encode($tag['options'])) |
|
480 | + md5($url.JsonHelper::encode($tag['options'])) |
|
481 | 481 | ); |
482 | 482 | break; |
483 | 483 | case 'css': |
@@ -94,7 +94,7 @@ |
||
94 | 94 | * |
95 | 95 | * @return Markup |
96 | 96 | */ |
97 | - public function asset(string $path, bool $public=false): Markup |
|
97 | + public function asset(string $path, bool $public = false): Markup |
|
98 | 98 | { |
99 | 99 | return Template::raw( |
100 | 100 | $this->viteService->asset($path, $public) |
@@ -50,12 +50,12 @@ discard block |
||
50 | 50 | */ |
51 | 51 | public static function fetch(string $pathOrUrl, callable $callback = null, string $cacheKeySuffix = '') |
52 | 52 | { |
53 | - $pathOrUrl = (string)Craft::parseEnv($pathOrUrl); |
|
53 | + $pathOrUrl = (string) Craft::parseEnv($pathOrUrl); |
|
54 | 54 | // Create the dependency tags |
55 | 55 | $dependency = new TagDependency([ |
56 | 56 | 'tags' => [ |
57 | - self::CACHE_TAG . $cacheKeySuffix, |
|
58 | - self::CACHE_TAG . $cacheKeySuffix . $pathOrUrl, |
|
57 | + self::CACHE_TAG.$cacheKeySuffix, |
|
58 | + self::CACHE_TAG.$cacheKeySuffix.$pathOrUrl, |
|
59 | 59 | ], |
60 | 60 | ]); |
61 | 61 | // If this is a file path such as for the `manifest.json`, add a FileDependency so it's cache bust if the file changes |
@@ -76,8 +76,8 @@ discard block |
||
76 | 76 | // Get the result from the cache, or parse the file |
77 | 77 | $cache = Craft::$app->getCache(); |
78 | 78 | return $cache->getOrSet( |
79 | - self::CACHE_KEY . $cacheKeySuffix . $pathOrUrl, |
|
80 | - function () use ($pathOrUrl, $callback) { |
|
79 | + self::CACHE_KEY.$cacheKeySuffix.$pathOrUrl, |
|
80 | + function() use ($pathOrUrl, $callback) { |
|
81 | 81 | $contents = null; |
82 | 82 | if (UrlHelper::isAbsoluteUrl($pathOrUrl)) { |
83 | 83 | $response = self::fetchResponse($pathOrUrl); |
@@ -137,8 +137,8 @@ discard block |
||
137 | 137 | */ |
138 | 138 | public static function createUrl(string $url, string $path): string |
139 | 139 | { |
140 | - $url = (string)Craft::parseEnv($url); |
|
141 | - return rtrim($url, '/') . '/' . trim($path, '/'); |
|
140 | + $url = (string) Craft::parseEnv($url); |
|
141 | + return rtrim($url, '/').'/'.trim($path, '/'); |
|
142 | 142 | } |
143 | 143 | |
144 | 144 | /** |
@@ -52,7 +52,7 @@ |
||
52 | 52 | return; |
53 | 53 | } |
54 | 54 | // See if the $pluginDevServerEnvVar env var exists, and if not, don't run off of the dev server |
55 | - $useDevServer = (bool)App::env($this->pluginDevServerEnvVar); |
|
55 | + $useDevServer = (bool) App::env($this->pluginDevServerEnvVar); |
|
56 | 56 | if ($useDevServer === false) { |
57 | 57 | $this->useDevServer = false; |
58 | 58 | } |