1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/3.0/obsolete/web_client/system/libraries/drivers/Log.php

22 lines
472 B
PHP

<?php defined('SYSPATH') OR die('No direct access allowed.');
/**
* Log API driver.
*
* $Id: Log.php 4679 2009-11-10 01:45:52Z isaiah $
*
* @package Kohana_Log
* @author Kohana Team
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
abstract class Log_Driver {
protected $config = array();
public function __construct(array $config)
{
$this->config = $config;
}
abstract public function save(array $messages);
}