diff --git a/composer.json b/composer.json index e7ab4eea..eae93bb4 100644 --- a/composer.json +++ b/composer.json @@ -39,7 +39,7 @@ "require": { "php": ">=8.0", "ext-pdo": "*", - "cycle/database": "^2.8", + "cycle/database": "^2.8.1", "doctrine/instantiator": "^1.3.1 || ^2.0", "spiral/core": "^2.8 || ^3.0" }, diff --git a/tests/ORM/Functional/Driver/Common/GeneratedColumnTest.php b/tests/ORM/Functional/Driver/Common/GeneratedColumnTest.php index 9ddf7629..8f877897 100644 --- a/tests/ORM/Functional/Driver/Common/GeneratedColumnTest.php +++ b/tests/ORM/Functional/Driver/Common/GeneratedColumnTest.php @@ -65,7 +65,6 @@ public function setUp(): void ], ], ])); - $this->logger->display(); } public function testPersist(): void @@ -128,5 +127,5 @@ protected function storeEntity(ORMInterface $orm, Transaction\Tuple $tuple, bool }; } - abstract function createTables(): void; + abstract public function createTables(): void; } diff --git a/tests/ORM/Functional/Driver/Common/Relation/Embedded/EmbeddedRelationTest.php b/tests/ORM/Functional/Driver/Common/Relation/Embedded/EmbeddedRelationTest.php index 4e8efbab..e02efd44 100644 --- a/tests/ORM/Functional/Driver/Common/Relation/Embedded/EmbeddedRelationTest.php +++ b/tests/ORM/Functional/Driver/Common/Relation/Embedded/EmbeddedRelationTest.php @@ -128,7 +128,6 @@ public function testInitRelationFetchOne(): void public function testCreateUserWithEmbedded(): void { - $this->logger->display(); $u = new User(); $u->email = 'new@email.com'; $u->balance = 900; diff --git a/tests/ORM/Functional/Driver/SQLServer/GeneratedColumnTest.php b/tests/ORM/Functional/Driver/SQLServer/GeneratedColumnTest.php index ece4004c..30e6f092 100644 --- a/tests/ORM/Functional/Driver/SQLServer/GeneratedColumnTest.php +++ b/tests/ORM/Functional/Driver/SQLServer/GeneratedColumnTest.php @@ -20,7 +20,6 @@ class GeneratedColumnTest extends CommonClass public function createTables(): void { - $this->logger->display(); $this->getDatabase()->query('DROP SEQUENCE IF EXISTS testSequence1;'); $this->getDatabase()->query('DROP SEQUENCE IF EXISTS testSequence2;'); $this->getDatabase()->query('CREATE SEQUENCE testSequence1 START WITH 1;');