Skip to content

Commit 9d2f110

Browse files
committed
fix code style
1 parent 4b35d29 commit 9d2f110

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Fixtures/DummyOutput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class DummyOutput extends BufferedOutput
2323
public function getLogs(): array
2424
{
2525
$logs = [];
26-
foreach (explode(PHP_EOL, trim($this->fetch())) as $message) {
26+
foreach (explode(\PHP_EOL, trim($this->fetch())) as $message) {
2727
preg_match('/^\[(.*)\] (.*)/', $message, $matches);
2828
$logs[] = sprintf('%s %s', $matches[1], $matches[2]);
2929
}

0 commit comments

Comments
 (0)