Passed
Branch v4 (4ff8df)
by Andrew
27:49 queued 21:06
created
src/helpers/ManifestHelper.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -45,14 +45,14 @@
 block discarded – undo
45 45
     public static function fetchManifest(string $manifestPath)
46 46
     {
47 47
         // Grab the manifest
48
-        $pathOrUrl = (string)Craft::parseEnv($manifestPath);
48
+        $pathOrUrl = (string) Craft::parseEnv($manifestPath);
49 49
         $manifest = FileHelper::fetch($pathOrUrl, [JsonHelper::class, 'decodeIfJson']);
50 50
         // If no manifest file is found, log it
51 51
         if ($manifest === null) {
52
-            Craft::error('Manifest not found at ' . $manifestPath, __METHOD__);
52
+            Craft::error('Manifest not found at '.$manifestPath, __METHOD__);
53 53
         }
54 54
         // Ensure we're dealing with an array
55
-        self::$manifest = (array)$manifest;
55
+        self::$manifest = (array) $manifest;
56 56
     }
57 57
 
58 58
     /**
Please login to merge, or discard this patch.