Completed
Pull Request — master (#14)
by Stefano
04:43
created
src/Utility/AssetsRevisions.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
         }
64 64
         if (!empty($extension) && !empty(static::$assets[$name . $extension])) {
65 65
             return (string)static::$assets[$name . $extension];
66
-         }
66
+            }
67 67
 
68 68
         return $name;
69 69
     }
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
             $path = CONFIG . 'rev-manifest.json';
42 42
         }
43 43
         if (file_exists($path)) {
44
-            static::$assets = (array)json_decode(file_get_contents($path), true);
44
+            static::$assets = (array) json_decode(file_get_contents($path), true);
45 45
         }
46 46
     }
47 47
 
@@ -59,10 +59,10 @@  discard block
 block discarded – undo
59 59
         }
60 60
 
61 61
         if (!empty(static::$assets[$name])) {
62
-            return (string)static::$assets[$name];
62
+            return (string) static::$assets[$name];
63 63
         }
64 64
         if (!empty($extension) && !empty(static::$assets[$name . $extension])) {
65
-            return (string)static::$assets[$name . $extension];
65
+            return (string) static::$assets[$name . $extension];
66 66
          }
67 67
 
68 68
         return $name;
Please login to merge, or discard this patch.