Passed
Push — master ( e4dc12...6c8356 )
by Mike
03:05
created
src/Providers/Service.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 
10 10
     public function boot()
11 11
     {
12
-        $configPath = __DIR__ . '/../../config/laravel-model-caching.php';
12
+        $configPath = __DIR__.'/../../config/laravel-model-caching.php';
13 13
         $this->mergeConfigFrom($configPath, 'laravel-model-caching');
14 14
         $this->commands(Flush::class);
15 15
     }
Please login to merge, or discard this patch.
src/CachedBuilder.php 1 patch
Spacing   +13 added lines, -13 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
 
@@ -127,11 +127,11 @@  discard block
 block discarded – undo
127 127
 
128 128
     public function pluck($column, $key = null)
129 129
     {
130
-        if (! $this->isCachable) {
130
+        if (!$this->isCachable) {
131 131
             return parent::pluck($column, $key);
132 132
         }
133 133
 
134
-        $keyDifferentiator = "-pluck_{$column}" . ($key ? "_{$key}" : "");
134
+        $keyDifferentiator = "-pluck_{$column}".($key ? "_{$key}" : "");
135 135
         $arguments = func_get_args();
136 136
         $cacheKey = $this->makeCacheKey([$column], null, $keyDifferentiator);
137 137
         $method = 'pluck';
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
 
142 142
     public function sum($column)
143 143
     {
144
-        if (! $this->isCachable) {
144
+        if (!$this->isCachable) {
145 145
             return parent::sum($column);
146 146
         }
147 147
 
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
 
155 155
     public function value($column)
156 156
     {
157
-        if (! $this->isCachable) {
157
+        if (!$this->isCachable) {
158 158
             return parent::value($column);
159 159
         }
160 160
 
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
         return $this->cache($cacheTags)
204 204
             ->rememberForever(
205 205
                 $hashedCacheKey,
206
-                function () use ($arguments, $cacheKey, $method) {
206
+                function() use ($arguments, $cacheKey, $method) {
207 207
                     return [
208 208
                         'key' => $cacheKey,
209 209
                         'value' => parent::{$method}(...$arguments),
Please login to merge, or discard this patch.
src/CacheKey.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     {
15 15
         return "genealabs:laravel-model-caching:"
16 16
             . (config('genealabs:laravel-model-caching', '')
17
-                ? config('genealabs:laravel-model-caching', '') . ":"
17
+                ? config('genealabs:laravel-model-caching', '').":"
18 18
                 : "");
19 19
     }
20 20
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 
55 55
     protected function getLimitClause() : string
56 56
     {
57
-        if (! $this->query->limit) {
57
+        if (!$this->query->limit) {
58 58
             return '';
59 59
         }
60 60
 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 
69 69
     protected function getOffsetClause() : string
70 70
     {
71
-        if (! $this->query->offset) {
71
+        if (!$this->query->offset) {
72 72
             return '';
73 73
         }
74 74
 
@@ -80,12 +80,12 @@  discard block
 block discarded – undo
80 80
         $orders = collect($this->query->orders);
81 81
 
82 82
         return $orders
83
-            ->reduce(function ($carry, $order) {
83
+            ->reduce(function($carry, $order) {
84 84
                 if (($order['type'] ?? '') === 'Raw') {
85
-                    return $carry . '_orderByRaw_' . str_slug($order['sql']);
85
+                    return $carry.'_orderByRaw_'.str_slug($order['sql']);
86 86
                 }
87 87
 
88
-                return $carry . '_orderBy_' . $order['column'] . '_' . $order['direction'];
88
+                return $carry.'_orderBy_'.$order['column'].'_'.$order['direction'];
89 89
             })
90 90
             ?: '';
91 91
     }
@@ -96,12 +96,12 @@  discard block
 block discarded – undo
96 96
             return '';
97 97
         }
98 98
 
99
-        return '_' . implode('_', $columns);
99
+        return '_'.implode('_', $columns);
100 100
     }
101 101
 
102 102
     protected function getTypeClause($where) : string
103 103
     {
104
-        $type =in_array($where['type'], ['In', 'NotIn', 'Null', 'NotNull', 'between'])
104
+        $type = in_array($where['type'], ['In', 'NotIn', 'Null', 'NotNull', 'between'])
105 105
             ? strtolower($where['type'])
106 106
             : strtolower($where['operator']);
107 107
 
@@ -118,17 +118,17 @@  discard block
 block discarded – undo
118 118
             ? implode('_', $where['values'])
119 119
             : '';
120 120
 
121
-        if (! $values && $this->query->bindings['where'] ?? false) {
121
+        if (!$values && $this->query->bindings['where'] ?? false) {
122 122
             $values = implode('_', $this->query->bindings['where']);
123 123
         }
124 124
 
125
-        return '_' . $values;
125
+        return '_'.$values;
126 126
     }
127 127
 
128 128
     protected function getWhereClauses(array $wheres = []) : string
129 129
     {
130 130
         return $this->getWheres($wheres)
131
-            ->reduce(function ($carry, $where) {
131
+            ->reduce(function($carry, $where) {
132 132
                 $value = $this->getNestedClauses($where);
133 133
                 $value .= $this->getColumnClauses($where);
134 134
                 $value .= $this->getRawClauses($where);
@@ -141,11 +141,11 @@  discard block
 block discarded – undo
141 141
 
142 142
     protected function getNestedClauses(array $where) : string
143 143
     {
144
-        if (! in_array($where['type'], ['Exists', 'Nested', 'NotExists'])) {
144
+        if (!in_array($where['type'], ['Exists', 'Nested', 'NotExists'])) {
145 145
             return '';
146 146
         }
147 147
 
148
-        return '_' . strtolower($where['type']) . $this->getWhereClauses($where['query']->wheres);
148
+        return '_'.strtolower($where['type']).$this->getWhereClauses($where['query']->wheres);
149 149
     }
150 150
 
151 151
     protected function getColumnClauses(array $where) : string
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
             return '';
164 164
         }
165 165
 
166
-        return "_{$where['boolean']}_" . str_slug($where['sql']);
166
+        return "_{$where['boolean']}_".str_slug($where['sql']);
167 167
     }
168 168
 
169 169
     protected function getOtherClauses(array $where, string $carry = null) : string
@@ -197,6 +197,6 @@  discard block
 block discarded – undo
197 197
             return '';
198 198
         }
199 199
 
200
-        return '-' . implode('-', $eagerLoads->keys()->toArray());
200
+        return '-'.implode('-', $eagerLoads->keys()->toArray());
201 201
     }
202 202
 }
Please login to merge, or discard this patch.
src/Traits/Cachable.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         $usesCachableTrait = collect(class_uses($this))
35 35
             ->contains("GeneaLabs\LaravelModelCaching\Traits\Cachable");
36 36
 
37
-        if (! $usesCachableTrait) {
37
+        if (!$usesCachableTrait) {
38 38
             array_push($tags, str_slug(get_called_class()));
39 39
         }
40 40
 
@@ -82,14 +82,14 @@  discard block
 block discarded – undo
82 82
 
83 83
     public static function bootCachable()
84 84
     {
85
-        static::saved(function ($instance) {
85
+        static::saved(function($instance) {
86 86
             $instance->flushCache();
87 87
         });
88 88
     }
89 89
 
90 90
     public static function all($columns = ['*'])
91 91
     {
92
-        if (! cache()->get(self::$isCachableKey)) {
92
+        if (!cache()->get(self::$isCachableKey)) {
93 93
             return parent::all($columns);
94 94
         }
95 95
 
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
         $key = $instance->makeCacheKey();
100 100
 
101 101
         return $instance->cache($tags)
102
-            ->rememberForever($key, function () use ($columns) {
102
+            ->rememberForever($key, function() use ($columns) {
103 103
                 return parent::all($columns);
104 104
             });
105 105
     }
Please login to merge, or discard this patch.
src/CacheTags.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     {
20 20
         return "genealabs:laravel-model-caching:"
21 21
             . (config('genealabs:laravel-model-caching', '')
22
-                ? config('genealabs:laravel-model-caching', '') . ":"
22
+                ? config('genealabs:laravel-model-caching', '').":"
23 23
                 : "");
24 24
     }
25 25
 
@@ -27,10 +27,10 @@  discard block
 block discarded – undo
27 27
     {
28 28
         $tags = collect($this->eagerLoad)
29 29
             ->keys()
30
-            ->map(function ($relationName) {
30
+            ->map(function($relationName) {
31 31
                 $relation = collect(explode('.', $relationName))
32
-                    ->reduce(function ($carry, $name) {
33
-                        if (! $carry) {
32
+                    ->reduce(function($carry, $name) {
33
+                        if (!$carry) {
34 34
                             $carry = $this->model;
35 35
                         }
36 36
 
Please login to merge, or discard this patch.
src/Console/Commands/Flush.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     {
12 12
         $option = $this->option('model');
13 13
 
14
-        if (! $option) {
14
+        if (!$option) {
15 15
             cache()
16 16
                 ->store(config('laravel-model-caching:store'))
17 17
                 ->flush();
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
         $usesCachableTrait = collect(class_uses($model))
24 24
             ->contains("GeneaLabs\LaravelModelCaching\Traits\Cachable");
25 25
 
26
-        if (! $usesCachableTrait) {
26
+        if (!$usesCachableTrait) {
27 27
             $this->error("'{$option}' is not an instance of CachedModel.");
28 28
             $this->line("Only CachedModel instances can be flushed.");
29 29
 
Please login to merge, or discard this patch.