Skip to content

Commit e37fd73

Browse files
AdalbertMemSQLgithub-actions[bot]
authored andcommitted
Fix code styling
1 parent ffa2d9d commit e37fd73

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

src/Schema/Grammar.php

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -237,16 +237,13 @@ public function compileRename(Blueprint $blueprint, Fluent $command)
237237
/**
238238
* Compile a rename column command.
239239
*
240-
* @param \Illuminate\Database\Schema\Blueprint $blueprint
241-
* @param \Illuminate\Support\Fluent $command
242-
* @param \Illuminate\Database\Connection $connection
243240
* @return array|string
244241
*/
245242
public function compileRenameColumn(Blueprint $blueprint, Fluent $command, Connection $connection)
246243
{
247244
return sprintf('alter table %s change %s %s',
248-
$this->wrapTable($blueprint),
249-
$this->wrap($command->from),
250-
$this->wrap($command->to));
245+
$this->wrapTable($blueprint),
246+
$this->wrap($command->from),
247+
$this->wrap($command->to));
251248
}
252249
}

tests/Hybrid/RenameTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function rename_table()
5656
}
5757

5858
/** @test */
59-
public function rename_column()
59+
public function rename_column()
6060
{
6161
if ($this->runHybridIntegrations()) {
6262
$cached = $this->mockDatabaseConnection;

0 commit comments

Comments
 (0)