Passed
Push — master ( 3a4071...1777bb )
by Mike
03:01
created
src/Traits/Cachable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 
66 66
     public static function bootCachable()
67 67
     {
68
-        static::saved(function ($instance) {
68
+        static::saved(function($instance) {
69 69
             $instance->flushCache();
70 70
         });
71 71
     }
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
         $key = $instance->makeCacheKey();
79 79
 
80 80
         return $instance->cache($tags)
81
-            ->rememberForever($key, function () use ($columns) {
81
+            ->rememberForever($key, function() use ($columns) {
82 82
                 return parent::all($columns);
83 83
             });
84 84
     }
Please login to merge, or discard this patch.