@@ -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(); |
@@ -23,7 +23,7 @@ discard block |
||
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 |