Skip to content

Commit 2612d04

Browse files
nikophilkbond
authored andcommitted
bot: fix cs [skip ci]
1 parent b48399d commit 2612d04

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/Functional/ORMDatabaseResetterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public static function setUpBeforeClass(): void
3232
self::markTestSkipped('doctrine/orm is not enabled.');
3333
}
3434

35-
if (!str_starts_with(\getenv('DATABASE_URL'), 'postgres')) {
35+
if (!\str_starts_with(\getenv('DATABASE_URL'), 'postgres')) {
3636
self::markTestSkipped('Can only test migrations with postgresql.');
3737
}
3838
}

tests/Functional/WithMigrationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ protected static function createKernel(array $options = []): KernelInterface
5353
self::markTestSkipped('doctrine/orm not enabled.');
5454
}
5555

56-
if (!str_starts_with(\getenv('DATABASE_URL'), 'postgres')) {
56+
if (!\str_starts_with(\getenv('DATABASE_URL'), 'postgres')) {
5757
self::markTestSkipped('Can only test migrations with postgresql.');
5858
}
5959

0 commit comments

Comments
 (0)