0byt3m1n1
Path:
/
data
/
applications
/
aps
/
gallery
/
3.0.9-21
/
standard
/
htdocs
/
system
/
libraries
/
drivers
/
[
Home
]
File: Log.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); }