Skip to content

Commit 364637d

Browse files
Fix code style (php-cs-fixer)
1 parent 13a2209 commit 364637d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Database/TenantDatabaseManagers/SQLiteDatabaseManager.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ public function deleteDatabase(TenantWithDatabase $tenant): bool
9999
$path = $this->getPath($name);
100100

101101
try {
102-
unlink($path.'-journal');
103-
unlink($path.'-wal');
104-
unlink($path.'-shm');
102+
unlink($path . '-journal');
103+
unlink($path . '-wal');
104+
unlink($path . '-shm');
105105
} catch (Throwable) {}
106106

107107
try {

0 commit comments

Comments
 (0)