From 158faff94fc9b2637dae2a18aa896d8a289a5814 Mon Sep 17 00:00:00 2001 From: Rajesh Kumar Date: Thu, 1 Feb 2024 22:46:55 +0530 Subject: [PATCH] PHP8.3 support added --- test/integration/Adapter/Platform/SqlServerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/Adapter/Platform/SqlServerTest.php b/test/integration/Adapter/Platform/SqlServerTest.php index adbce297..de8244b7 100644 --- a/test/integration/Adapter/Platform/SqlServerTest.php +++ b/test/integration/Adapter/Platform/SqlServerTest.php @@ -49,7 +49,7 @@ protected function setUp(): void $this->adapters['pdo_sqlsrv'] = new PDO( 'sqlsrv:Server=' . getenv('TESTS_LAMINAS_DB_ADAPTER_DRIVER_SQLSRV_HOSTNAME') - . '; Database=' . ($database ?: '') . '; TrustServerCertificate=1', + . ';Database=' . ($database ?: '') . ';TrustServerCertificate=1', getenv('TESTS_LAMINAS_DB_ADAPTER_DRIVER_SQLSRV_USERNAME'), getenv('TESTS_LAMINAS_DB_ADAPTER_DRIVER_SQLSRV_PASSWORD') );