<?php
/**
* @see https://github.com/laminas/laminas-log for the canonical source repository
* @copyright https://github.com/laminas/laminas-log/blob/master/COPYRIGHT.md
* @license https://github.com/laminas/laminas-log/blob/master/LICENSE.md New BSD License
*/
namespace Laminas\Log\Processor;
interface ProcessorInterface
{
/**
* Processes a log message before it is given to the writers
*
* @param array $event
* @return array
*/
public function process(array $event);
}