Skip to content

Commit ef248dd

Browse files
keradusnicolas-grekas
authored andcommitted
chore: PHP CS Fixer - update heredoc handling
1 parent d5c46dc commit ef248dd

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

Tests/Functional/ConfigDumpReferenceCommandTest.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,9 @@ public function testDumpAtPath(bool $debug)
9595
child2: ~
9696

9797

98-
EOL
99-
, $tester->getDisplay(true));
98+
EOL,
99+
$tester->getDisplay(true)
100+
);
100101
}
101102

102103
#[TestWith([true])]

Tests/Functional/ContainerDebugCommandTest.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,9 @@ public function testDescribeEnvVars()
183183
184184
* UNKNOWN
185185

186-
TXT
187-
, $tester->getDisplay(true));
186+
TXT,
187+
$tester->getDisplay(true)
188+
);
188189

189190
putenv('REAL');
190191
}

Tests/Functional/FragmentTest.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@ public function testFragment($insulate)
3333
es
3434
--
3535
fr
36-
TXT
37-
, $client->getResponse()->getContent());
36+
TXT,
37+
$client->getResponse()->getContent()
38+
);
3839
}
3940

4041
public static function getConfigs()

0 commit comments

Comments
 (0)