We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91afe5b commit f7d5e64Copy full SHA for f7d5e64
src/Commands/DBTruncateCommand.php
@@ -25,7 +25,7 @@ public function handle(): int
25
26
$foreignKeyChecks = $this->hasOption('checks') && filter_var($this->option('checks'), FILTER_VALIDATE_BOOLEAN);
27
28
- if (!$foreignKeyChecks) {
+ if (! $foreignKeyChecks) {
29
$this->components->warn('Disabling foreign key checks!');
30
Schema::disableForeignKeyConstraints();
31
}
@@ -46,7 +46,7 @@ public function handle(): int
46
47
$this->components->info('Finished truncating tables.');
48
49
50
$this->components->warn('Re-enabling foreign key checks!');
51
Schema::enableForeignKeyConstraints();
52
0 commit comments