Test Failed
Push — master ( 05d0b0...dc6805 )
by Mike
08:15
created
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();
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
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
 
Please login to merge, or discard this patch.