Skip to content

Commit d77ba4a

Browse files
CS fix
1 parent 37708cb commit d77ba4a

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/Symfony/Bridge/PhpUnit/Tests/DeprecationErrorHandler/DeprecationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ private static function removeDir($dir)
265265
rmdir($dir);
266266
}
267267

268-
public static function setupBeforeClass(): void
268+
public static function setUpBeforeClass(): void
269269
{
270270
foreach (get_declared_classes() as $class) {
271271
if ('C' === $class[0] && 0 === strpos($class, 'ComposerAutoloaderInit')) {

src/Symfony/Component/Cache/Tests/Adapter/CouchbaseBucketAdapterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class CouchbaseBucketAdapterTest extends AdapterTestCase
3333
/** @var \CouchbaseBucket */
3434
protected static $client;
3535

36-
public static function setupBeforeClass(): void
36+
public static function setUpBeforeClass(): void
3737
{
3838
if (!CouchbaseBucketAdapter::isSupported()) {
3939
throw new SkippedTestSuiteError('Couchbase >= 2.6.0 < 3.0.0 is required.');

src/Symfony/Component/Cache/Tests/Adapter/CouchbaseCollectionAdapterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class CouchbaseCollectionAdapterTest extends AdapterTestCase
3333
/** @var Collection */
3434
protected static $client;
3535

36-
public static function setupBeforeClass(): void
36+
public static function setUpBeforeClass(): void
3737
{
3838
if (!CouchbaseCollectionAdapter::isSupported()) {
3939
self::markTestSkipped('Couchbase >= 3.0.0 < 4.0.0 is required.');

src/Symfony/Component/Cache/Tests/Adapter/RedisArrayAdapterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class RedisArrayAdapterTest extends AbstractRedisAdapterTestCase
2020
{
2121
public static function setUpBeforeClass(): void
2222
{
23-
parent::setupBeforeClass();
23+
parent::setUpBeforeClass();
2424
if (!class_exists(\RedisArray::class)) {
2525
throw new SkippedTestSuiteError('The RedisArray class is required.');
2626
}

src/Symfony/Component/Lock/Tests/Store/MongoDbStoreFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*/
2626
class MongoDbStoreFactoryTest extends TestCase
2727
{
28-
public static function setupBeforeClass(): void
28+
public static function setUpBeforeClass(): void
2929
{
3030
if (!class_exists(Client::class)) {
3131
throw new SkippedTestSuiteError('The mongodb/mongodb package is required.');

src/Symfony/Component/Lock/Tests/Store/MongoDbStoreTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class MongoDbStoreTest extends AbstractStoreTestCase
3030
{
3131
use ExpiringStoreTestTrait;
3232

33-
public static function setupBeforeClass(): void
33+
public static function setUpBeforeClass(): void
3434
{
3535
if (!class_exists(Client::class)) {
3636
throw new SkippedTestSuiteError('The mongodb/mongodb package is required.');

0 commit comments

Comments
 (0)