Skip to content

Commit c85ed7b

Browse files
committed
Apply fixes from StyleCI
1 parent 72f6e37 commit c85ed7b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Illuminate/Database/Schema/Grammars/SQLiteGrammar.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,8 +310,7 @@ public function compileDropColumn(Blueprint $blueprint, Fluent $command, Connect
310310

311311
$columns = $this->prefixArray('drop column', $this->wrapArray($command->columns));
312312

313-
return collect($columns)->map(fn ($column) =>
314-
'alter table '.$table.' '.$column
313+
return collect($columns)->map(fn ($column) => 'alter table '.$table.' '.$column
315314
)->all();
316315
} else {
317316
$tableDiff = $this->getDoctrineTableDiff(

0 commit comments

Comments
 (0)