Completed
Push — master ( 38ebfc...6072da )
by Elf
04:56
created
src/Console/Commands/AssetsVersion.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -30,14 +30,14 @@  discard block
 block discarded – undo
30 30
     {
31 31
         $filename = (string) $this->option('filename');
32 32
 
33
-        $assets = $this->laravel['config']->get($filename);
33
+        $assets = $this->laravel[ 'config' ]->get($filename);
34 34
 
35 35
         $revisioned = $this->revisionAssets($assets);
36 36
 
37 37
         if ($assets !== $revisioned) {
38 38
             $this->updateAssetsVersionConfigFile($filename, $revisioned);
39 39
 
40
-            $this->laravel['config'][$filename] = $revisioned;
40
+            $this->laravel[ 'config' ][ $filename ] = $revisioned;
41 41
         }
42 42
 
43 43
         $this->info('Assets version configuration'.
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      */
54 54
     protected function revisionAssets($assets)
55 55
     {
56
-        $newAssets = [];
56
+        $newAssets = [ ];
57 57
 
58 58
         if (is_array($assets)) {
59 59
             foreach ($assets as $filename => $value) {
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
                     $this->error("Revisioning file [{$filename}] failed.");
73 73
                 }
74 74
 
75
-                $newAssets[$filename] = $value;
75
+                $newAssets[ $filename ] = $value;
76 76
             }
77 77
         }
78 78
 
Please login to merge, or discard this patch.