Passed
Push — master ( 50ed13...06cea5 )
by Mike
03:09
created
src/Console/Commands/Flush.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
     {
13 13
         $option = $this->option('model');
14 14
 
15
-        if (! $option) {
15
+        if (!$option) {
16 16
             $this->error("You must specify a model to flush a model's cache:");
17 17
             $this->line("modelCache:flush --model=App\\Model");
18 18
 
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 
22 22
         $model = new $option;
23 23
 
24
-        if (! $model instanceof CachedModel) {
24
+        if (!$model instanceof CachedModel) {
25 25
             $this->error("'{$option}' is not an instance of CachedModel.");
26 26
             $this->line("Only CachedModel instances can be flushed.");
27 27
 
Please login to merge, or discard this patch.