File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
DependencyInjection/Compiler Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ public function testProcessWithDoctrineDBALVersionAtLeast30(): void
83
83
84
84
public function testProcessWithDoctrineDBALVersionLowerThan30 (): void
85
85
{
86
- if (! self ::isDoctrineDBALVersion2Installed ()) {
86
+ if (!self ::isDoctrineDBALVersion2Installed ()) {
87
87
$ this ->markTestSkipped ('This test requires the version of the "doctrine/dbal" Composer package to be ^2.13. ' );
88
88
}
89
89
@@ -123,7 +123,7 @@ public function testProcessWithDoctrineDBALVersionLowerThan213OrMissing(): void
123
123
*/
124
124
public function testProcessDoesNothingIfConditionsForEnablingTracingAreMissing (ContainerBuilder $ container ): void
125
125
{
126
- if (! self ::isDoctrineDBALInstalled ()) {
126
+ if (!self ::isDoctrineDBALInstalled ()) {
127
127
$ this ->markTestSkipped ('This test requires the "doctrine/dbal" Composer package. ' );
128
128
}
129
129
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ protected static function isDoctrineDBALInstalled(): bool
19
19
protected static function isDoctrineDBALVersion2Installed (): bool
20
20
{
21
21
return self ::isDoctrineDBALInstalled ()
22
- && ! self ::isDoctrineDBALVersion3Installed ();
22
+ && !self ::isDoctrineDBALVersion3Installed ();
23
23
}
24
24
25
25
protected static function isDoctrineDBALVersion3Installed (): bool
You can’t perform that action at this time.
0 commit comments