@@ -11,7 +11,7 @@ discard block |
||
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(); |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | $usesCachableTrait = collect(class_uses($model)) |
26 | 26 | ->contains("GeneaLabs\LaravelModelCaching\Traits\Cachable"); |
27 | 27 | |
28 | - if (! $usesCachableTrait) { |
|
28 | + if (!$usesCachableTrait) { |
|
29 | 29 | $this->error("'{$option}' is not an instance of CachedModel."); |
30 | 30 | $this->line("Only CachedModel instances can be flushed."); |
31 | 31 |