From be93d6031c25b1f85bfd878323031e07ad8139c8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 19 Oct 2025 23:47:46 +0000 Subject: [PATCH] Fix code style (php-cs-fixer) --- src/Features/DisallowSqliteAttach.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Features/DisallowSqliteAttach.php b/src/Features/DisallowSqliteAttach.php index d4412984..36621b21 100644 --- a/src/Features/DisallowSqliteAttach.php +++ b/src/Features/DisallowSqliteAttach.php @@ -38,6 +38,7 @@ class DisallowSqliteAttach implements Feature { if (PHP_VERSION_ID >= 80500) { $this->setNativeAuthorizer($pdo); + return true; } @@ -72,8 +73,8 @@ class DisallowSqliteAttach implements Feature { $pdo->setAuthorizer(static function (int $action): int { return $action === 24 // SQLITE_ATTACH - ? Pdo\Sqlite::DENY - : Pdo\Sqlite::OK; + ? PDO\Sqlite::DENY + : PDO\Sqlite::OK; }); } }