<?php
/**
* EasyLogger
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
*/
/**
* Interface for handling log records.
*
* @author Nikola Posa <posa.nikola@gmail.com>
*/
interface EasyLogger_Handler_HandlerInterface
{
/**
* Handles a log record.
*
* @param array $record
* @return void
*/
function handle(array $record);
}
|