PHP Classes

File: library/EasyLogger/Handler/HandlerInterface.php

Recommend this page to a friend!
  Classes of Nikola Posa   EasyLogger   library/EasyLogger/Handler/HandlerInterface.php   Download  
File: library/EasyLogger/Handler/HandlerInterface.php
Role: Class source
Content type: text/plain
Description: Log handler interface.
Class: EasyLogger
Log events to files
Author: By
Last change:
Date: 11 years ago
Size: 447 bytes
 

Contents

Class file image Download
<?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);
}