We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b35d29 commit 9d2f110Copy full SHA for 9d2f110
Tests/Fixtures/DummyOutput.php
@@ -23,7 +23,7 @@ class DummyOutput extends BufferedOutput
23
public function getLogs(): array
24
{
25
$logs = [];
26
- foreach (explode(PHP_EOL, trim($this->fetch())) as $message) {
+ foreach (explode(\PHP_EOL, trim($this->fetch())) as $message) {
27
preg_match('/^\[(.*)\] (.*)/', $message, $matches);
28
$logs[] = sprintf('%s %s', $matches[1], $matches[2]);
29
}
0 commit comments