Test Failed
Push — master ( 9098a2...b88650 )
by Mike
08:28
created
src/CachedBuilder.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 
13 13
     public function avg($column)
14 14
     {
15
-        if (! $this->isCachable()) {
15
+        if (!$this->isCachable()) {
16 16
             return parent::avg($column);
17 17
         }
18 18
 
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
     public function count($columns = ['*'])
27 27
     {
28
-        if (! $this->isCachable()) {
28
+        if (!$this->isCachable()) {
29 29
             return parent::count($columns);
30 30
         }
31 31
 
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
     public function cursor()
40 40
     {
41
-        if (! $this->isCachable()) {
41
+        if (!$this->isCachable()) {
42 42
             return collect(parent::cursor());
43 43
         }
44 44
 
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      */
63 63
     public function find($id, $columns = ['*'])
64 64
     {
65
-        if (! $this->isCachable()) {
65
+        if (!$this->isCachable()) {
66 66
             return parent::find($id, $columns);
67 67
         }
68 68
 
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 
76 76
     public function first($columns = ['*'])
77 77
     {
78
-        if (! $this->isCachable()) {
78
+        if (!$this->isCachable()) {
79 79
             return parent::first($columns);
80 80
         }
81 81
 
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 
89 89
     public function get($columns = ['*'])
90 90
     {
91
-        if (! $this->isCachable()) {
91
+        if (!$this->isCachable()) {
92 92
             return parent::get($columns);
93 93
         }
94 94
 
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 
102 102
     public function max($column)
103 103
     {
104
-        if (! $this->isCachable()) {
104
+        if (!$this->isCachable()) {
105 105
             return parent::max($column);
106 106
         }
107 107
 
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 
115 115
     public function min($column)
116 116
     {
117
-        if (! $this->isCachable()) {
117
+        if (!$this->isCachable()) {
118 118
             return parent::min($column);
119 119
         }
120 120
 
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
         $pageName = 'page',
132 132
         $page = null
133 133
     ) {
134
-        if (! $this->isCachable()) {
134
+        if (!$this->isCachable()) {
135 135
             return parent::paginate($perPage, $columns, $pageName, $page);
136 136
         }
137 137
 
@@ -145,11 +145,11 @@  discard block
 block discarded – undo
145 145
 
146 146
     public function pluck($column, $key = null)
147 147
     {
148
-        if (! $this->isCachable()) {
148
+        if (!$this->isCachable()) {
149 149
             return parent::pluck($column, $key);
150 150
         }
151 151
 
152
-        $keyDifferentiator = "-pluck_{$column}" . ($key ? "_{$key}" : "");
152
+        $keyDifferentiator = "-pluck_{$column}".($key ? "_{$key}" : "");
153 153
         $arguments = func_get_args();
154 154
         $cacheKey = $this->makeCacheKey([$column], null, $keyDifferentiator);
155 155
         $method = 'pluck';
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
 
160 160
     public function sum($column)
161 161
     {
162
-        if (! $this->isCachable()) {
162
+        if (!$this->isCachable()) {
163 163
             return parent::sum($column);
164 164
         }
165 165
 
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
 
173 173
     public function value($column)
174 174
     {
175
-        if (! $this->isCachable()) {
175
+        if (!$this->isCachable()) {
176 176
             return parent::value($column);
177 177
         }
178 178
 
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
         return $this->cache($cacheTags)
242 242
             ->rememberForever(
243 243
                 $hashedCacheKey,
244
-                function () use ($arguments, $cacheKey, $method) {
244
+                function() use ($arguments, $cacheKey, $method) {
245 245
                     return [
246 246
                         'key' => $cacheKey,
247 247
                         'value' => parent::{$method}(...$arguments),
Please login to merge, or discard this patch.
src/Traits/Cachable.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
         $usesCachableTrait = collect(class_uses($this))
34 34
             ->contains("GeneaLabs\LaravelModelCaching\Traits\Cachable");
35 35
 
36
-        if (! $usesCachableTrait) {
36
+        if (!$usesCachableTrait) {
37 37
             array_push($tags, str_slug(get_called_class()));
38 38
         }
39 39
 
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 
80 80
     public static function bootCachable()
81 81
     {
82
-        static::saved(function ($instance) {
82
+        static::saved(function($instance) {
83 83
             $instance->flushCache();
84 84
         });
85 85
     }
@@ -92,14 +92,14 @@  discard block
 block discarded – undo
92 92
         $key = $instance->makeCacheKey();
93 93
 
94 94
         return $instance->cache($tags)
95
-            ->rememberForever($key, function () use ($columns) {
95
+            ->rememberForever($key, function() use ($columns) {
96 96
                 return parent::all($columns);
97 97
             });
98 98
     }
99 99
 
100 100
     public function newEloquentBuilder($query)
101 101
     {
102
-        if (! $this->isCachable()) {
102
+        if (!$this->isCachable()) {
103 103
             $this->isCachable = true;
104 104
 
105 105
             return new EloquentBuilder($query);
@@ -111,6 +111,6 @@  discard block
 block discarded – undo
111 111
     public function isCachable() : bool
112 112
     {
113 113
         return $this->isCachable
114
-            && ! config('laravel-model-caching.disabled');
114
+            && !config('laravel-model-caching.disabled');
115 115
     }
116 116
 }
Please login to merge, or discard this patch.