From 26ff165e2b501ff7ead2f30a02f7e0eb0975866e Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 18 Dec 2023 15:56:06 +0100 Subject: [PATCH] CS fix --- Tests/Store/MongoDbStoreFactoryTest.php | 2 +- Tests/Store/MongoDbStoreTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/Store/MongoDbStoreFactoryTest.php b/Tests/Store/MongoDbStoreFactoryTest.php index 7782f97..e5c4d0c 100644 --- a/Tests/Store/MongoDbStoreFactoryTest.php +++ b/Tests/Store/MongoDbStoreFactoryTest.php @@ -25,7 +25,7 @@ */ class MongoDbStoreFactoryTest extends TestCase { - public static function setupBeforeClass(): void + public static function setUpBeforeClass(): void { if (!class_exists(Client::class)) { throw new SkippedTestSuiteError('The mongodb/mongodb package is required.'); diff --git a/Tests/Store/MongoDbStoreTest.php b/Tests/Store/MongoDbStoreTest.php index 7efa540..3284c1f 100644 --- a/Tests/Store/MongoDbStoreTest.php +++ b/Tests/Store/MongoDbStoreTest.php @@ -30,7 +30,7 @@ class MongoDbStoreTest extends AbstractStoreTestCase { use ExpiringStoreTestTrait; - public static function setupBeforeClass(): void + public static function setUpBeforeClass(): void { if (!class_exists(Client::class)) { throw new SkippedTestSuiteError('The mongodb/mongodb package is required.');