From 2027b75d88b2c677acd4da7b16e9f21c6df55025 Mon Sep 17 00:00:00 2001 From: gitomato Date: Fri, 3 May 2024 02:00:27 +0200 Subject: [PATCH 1/2] Remove internal flag on DriverException (#6376) --- src/Exception/DriverException.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Exception/DriverException.php b/src/Exception/DriverException.php index d794d7768db..29c2d7a8e5a 100644 --- a/src/Exception/DriverException.php +++ b/src/Exception/DriverException.php @@ -18,8 +18,6 @@ class DriverException extends \Exception implements Exception, Driver\Exception { /** - * @internal - * * @param Driver\Exception $driverException The DBAL driver exception to chain. * @param Query|null $query The SQL query that triggered the exception, if any. */ From fb244d91c13beabebcf81a0d38578dcecf3f6a0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Vo=C5=99=C3=AD=C5=A1ek?= Date: Sat, 4 May 2024 21:17:46 +0200 Subject: [PATCH 2/2] Fix SQLiteSchemaManagerTest case --- ...{SqliteSchemaManagerTest.php => SQLiteSchemaManagerTest.php} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename tests/Functional/Schema/{SqliteSchemaManagerTest.php => SQLiteSchemaManagerTest.php} (99%) diff --git a/tests/Functional/Schema/SqliteSchemaManagerTest.php b/tests/Functional/Schema/SQLiteSchemaManagerTest.php similarity index 99% rename from tests/Functional/Schema/SqliteSchemaManagerTest.php rename to tests/Functional/Schema/SQLiteSchemaManagerTest.php index 76b6e57d2a0..0ebe74ab969 100644 --- a/tests/Functional/Schema/SqliteSchemaManagerTest.php +++ b/tests/Functional/Schema/SQLiteSchemaManagerTest.php @@ -15,7 +15,7 @@ use function array_shift; -class SqliteSchemaManagerTest extends SchemaManagerFunctionalTestCase +class SQLiteSchemaManagerTest extends SchemaManagerFunctionalTestCase { protected function supportsPlatform(AbstractPlatform $platform): bool {