@@ -12,7 +12,7 @@ discard block |
||
| 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 |
||
| 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 | |