Skip to content

Commit dabd45c

Browse files
committed
Fix CS
1 parent 29a684f commit dabd45c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/bundle/RepositoryInstaller/Command/InstallPlatformCommand.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
* @copyright Copyright (C) Ibexa AS. All rights reserved.
55
* @license For full copyright and license information view LICENSE file distributed with this source code.
66
*/
7-
87
namespace Ibexa\Bundle\RepositoryInstaller\Command;
98

109
use Doctrine\DBAL\Connection;

src/bundle/RepositoryInstaller/Installer/CoreInstaller.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ protected function getDropSqlStatementsForExistingSchema(
105105
// cleanup pre-existing database: drop foreign keys
106106
foreach ($tables as $table) {
107107
if ($existingSchema->hasTable($table->getName())) {
108-
foreach($this->db->getSchemaManager()->listTableForeignKeys($table->getName()) as $foreignKeyConstraint) {
108+
foreach ($this->db->getSchemaManager()->listTableForeignKeys($table->getName()) as $foreignKeyConstraint) {
109109
$statements[] = $databasePlatform->getDropForeignKeySQL($foreignKeyConstraint->getName(), $table->getName());
110110
}
111111
}

0 commit comments

Comments
 (0)