1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-08 06:06:40 +02:00

fix ProcessorInterface

This commit is contained in:
Ondrej Exner
2019-04-17 16:06:03 +02:00
parent ebb804e432
commit c5cacaa121

View File

@@ -19,7 +19,7 @@ namespace Monolog\Processor;
interface ProcessorInterface interface ProcessorInterface
{ {
/** /**
* @return array The processed records * @return array The processed record
*/ */
public function __invoke(array $records); public function __invoke(array $record);
} }