1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 15:34:03 +00:00

Fix code style (php-cs-fixer)

This commit is contained in:
github-actions[bot] 2025-09-01 14:14:34 +00:00
parent 13a2209f11
commit 364637dc23

View file

@ -99,9 +99,9 @@ class SQLiteDatabaseManager implements TenantDatabaseManager
$path = $this->getPath($name); $path = $this->getPath($name);
try { try {
unlink($path.'-journal'); unlink($path . '-journal');
unlink($path.'-wal'); unlink($path . '-wal');
unlink($path.'-shm'); unlink($path . '-shm');
} catch (Throwable) {} } catch (Throwable) {}
try { try {