Skip to content

Commit 00a5b65

Browse files
committed
Fix CS
1 parent aa29df7 commit 00a5b65

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/DependencyInjection/Compiler/DbalTracingPassTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public function testProcessWithDoctrineDBALVersionAtLeast30(): void
8383

8484
public function testProcessWithDoctrineDBALVersionLowerThan30(): void
8585
{
86-
if (! self::isDoctrineDBALVersion2Installed()) {
86+
if (!self::isDoctrineDBALVersion2Installed()) {
8787
$this->markTestSkipped('This test requires the version of the "doctrine/dbal" Composer package to be ^2.13.');
8888
}
8989

@@ -123,7 +123,7 @@ public function testProcessWithDoctrineDBALVersionLowerThan213OrMissing(): void
123123
*/
124124
public function testProcessDoesNothingIfConditionsForEnablingTracingAreMissing(ContainerBuilder $container): void
125125
{
126-
if (! self::isDoctrineDBALInstalled()) {
126+
if (!self::isDoctrineDBALInstalled()) {
127127
$this->markTestSkipped('This test requires the "doctrine/dbal" Composer package.');
128128
}
129129

tests/DoctrineTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ protected static function isDoctrineDBALInstalled(): bool
1919
protected static function isDoctrineDBALVersion2Installed(): bool
2020
{
2121
return self::isDoctrineDBALInstalled()
22-
&& ! self::isDoctrineDBALVersion3Installed();
22+
&& !self::isDoctrineDBALVersion3Installed();
2323
}
2424

2525
protected static function isDoctrineDBALVersion3Installed(): bool

0 commit comments

Comments
 (0)