Passed
Push — master ( 1777bb...3e6823 )
by Mike
03:01
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
             $this->error("You must specify a model to flush a model's cache:");
16 16
             $this->line("modelCache:flush --model=App\\Model");
17 17
 
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 
21 21
         $model = new $option;
22 22
 
23
-        if (! method_exists($model, 'flushCache')) {
23
+        if (!method_exists($model, 'flushCache')) {
24 24
             $this->error("'{$option}' is not an instance of CachedModel.");
25 25
             $this->line("Only CachedModel instances can be flushed.");
26 26
 
Please login to merge, or discard this patch.