Przeglądaj źródła

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

fix ProcessorInterface
Jordi Boggiano 6 lat temu
rodzic
commit
a81f62df48
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      src/Monolog/Processor/ProcessorInterface.php

+ 2 - 2
src/Monolog/Processor/ProcessorInterface.php

@@ -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);
 }