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