Skip to content
This repository was archived by the owner on Dec 9, 2023. It is now read-only.

Commit 301dad4

Browse files
author
Robin Chalas
committed
Merge branch '4.3' into 4.4
* 4.3: [FWBundle] Remove unused parameter [Intl] [Workflow] fixes English grammar typos [Filesystem] [Serializer] fixes English grammar typo [Messenger] Adding exception to amqp transport in case amqp ext is not installed [Monolog Bridge] Fixed accessing static property as non static. Improve Symfony description Add DateTimeZoneNormalizer into Dependency Injection [Messenger] Error when specified default bus is not among the configured [Validator] Add Japanese translation [Workflow] Apply the same logic of precedence between the apply() and the buildTransitionBlockerList() method Remove some unused methods parameters Avoid empty \"If-Modified-Since\" header in validation request [Security] Fix SwitchUser is broken when the User Provider always returns a valid user Fix error message according to the new regex compatibility with DoctrineBundle 2 [Validator] ConstraintValidatorTestCase: add missing return value to mocked validate method calls
2 parents 83202a9 + cf3172e commit 301dad4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Command/ServerLogCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
121121
continue;
122122
}
123123

124-
$this->displayLog($input, $output, $clientId, $record);
124+
$this->displayLog($output, $clientId, $record);
125125
}
126126

127127
return 0;
@@ -150,7 +150,7 @@ private function getLogs($socket): iterable
150150
}
151151
}
152152

153-
private function displayLog(InputInterface $input, OutputInterface $output, int $clientId, array $record)
153+
private function displayLog(OutputInterface $output, int $clientId, array $record)
154154
{
155155
if (isset($record['log_id'])) {
156156
$clientId = unpack('H*', $record['log_id'])[1];

0 commit comments

Comments
 (0)