Passed
Pull Request — 2.x (#821)
by Antonio Carlos
06:55
created
src/Helpers/frontend_helpers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
     {
6 6
         if (!app()->environment('local', 'development')) {
7 7
             try {
8
-                $manifest = Cache::rememberForever('rev-manifest', function () {
8
+                $manifest = Cache::rememberForever('rev-manifest', function() {
9 9
                     return json_decode(file_get_contents(config('twill.frontend.rev_manifest_path')), true);
10 10
                 });
11 11
 
Please login to merge, or discard this patch.
src/Services/Assets/Twill.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
     private function readManifest()
70 70
     {
71 71
         try {
72
-            return Cache::rememberForever('twill-manifest', function () {
72
+            return Cache::rememberForever('twill-manifest', function() {
73 73
                 return $this->readJson($this->getManifestFilename());
74 74
             });
75 75
         } catch (\Exception $e) {
Please login to merge, or discard this patch.