Passed
Push — master ( e4dc12...6c8356 )
by Mike
03:05
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();
@@ -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.