Skip to content

Commit f7d5e64

Browse files
Sairahcazgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 91afe5b commit f7d5e64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Commands/DBTruncateCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function handle(): int
2525

2626
$foreignKeyChecks = $this->hasOption('checks') && filter_var($this->option('checks'), FILTER_VALIDATE_BOOLEAN);
2727

28-
if (!$foreignKeyChecks) {
28+
if (! $foreignKeyChecks) {
2929
$this->components->warn('Disabling foreign key checks!');
3030
Schema::disableForeignKeyConstraints();
3131
}
@@ -46,7 +46,7 @@ public function handle(): int
4646

4747
$this->components->info('Finished truncating tables.');
4848

49-
if (!$foreignKeyChecks) {
49+
if (! $foreignKeyChecks) {
5050
$this->components->warn('Re-enabling foreign key checks!');
5151
Schema::enableForeignKeyConstraints();
5252
}

0 commit comments

Comments
 (0)