We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13a2209 commit 364637dCopy full SHA for 364637d
src/Database/TenantDatabaseManagers/SQLiteDatabaseManager.php
@@ -99,9 +99,9 @@ public function deleteDatabase(TenantWithDatabase $tenant): bool
99
$path = $this->getPath($name);
100
101
try {
102
- unlink($path.'-journal');
103
- unlink($path.'-wal');
104
- unlink($path.'-shm');
+ unlink($path . '-journal');
+ unlink($path . '-wal');
+ unlink($path . '-shm');
105
} catch (Throwable) {}
106
107
0 commit comments