1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-10-21 16:46:11 +02:00

Remove return type from ProcessorInterface to fix interop with Monolog 2, fixes #1680

This commit is contained in:
Jordi Boggiano
2022-06-09 10:11:53 +02:00
parent 60ad5183b5
commit 417c27dc72

View File

@@ -23,5 +23,5 @@ interface ProcessorInterface
/**
* @return LogRecord The processed record
*/
public function __invoke(LogRecord $record): LogRecord;
public function __invoke(LogRecord $record);
}