Skip to content

Commit

Permalink
Fixing CS issue
Browse files Browse the repository at this point in the history
  • Loading branch information
moufmouf committed Apr 15, 2019
1 parent 3e381ef commit e4478a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
Original file line number Diff line number Diff line change
Expand Up @@ -1624,7 +1624,7 @@ public function getCreateTableSQL(Table $table, $createFlags = self::CREATE_INDE
return array_merge($sql, $columnSql);
}

public function getCommentOnTableSQL(string $tableName, ?string $comment): string
public function getCommentOnTableSQL(string $tableName, ?string $comment) : string
{
$tableName = new Identifier($tableName);

Expand Down
2 changes: 1 addition & 1 deletion lib/Doctrine/DBAL/Platforms/SqlitePlatform.php
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ public function getInlineColumnCommentSQL($comment)
return '--' . str_replace("\n", "\n--", $comment) . "\n";
}

private function getInlineTableCommentSQL(string $comment): string
private function getInlineTableCommentSQL(string $comment) : string
{
return $this->getInlineColumnCommentSQL($comment);
}
Expand Down

0 comments on commit e4478a0

Please sign in to comment.