8000 Remove named arguments · symfony/symfony@e5afa36 · GitHub
[go: up one dir, main page]

Skip to content

Commit e5afa36

Browse files
Remove named arguments
1 parent 3555d5a commit e5afa36

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Symfony/Bridge/Monolog/Command/ServerLogCommand.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -160,11 +160,11 @@ private function displayLog(OutputInterface $output, int $clientId, array $recor
160160

161161
if (Logger::API >= 3) {
162162
$record = new LogRecord(
163-
level: Level::fromValue($record['level']),
164-
channel: $record['channel'],
165-
context: $record['context']->getContext(),
166-
datetime: $record['datetime'],
167-
message: $record['message'],
163+
$record['datetime'],
164+
$record['channel'],
165+
Level::fromValue($record['level']),
166+
$record['message'],
167+
$record['context']->getContext(),
168168
);
169169
}
170170

0 commit comments

Comments
 (0)
0