1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-05 12:47:39 +02:00

Merge pull request #1316 from keksa/feature/fix-processor-interface

fix ProcessorInterface
This commit is contained in:
Jordi Boggiano
2019-07-02 16:13:21 +02:00
committed by GitHub

View File

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