cakephp2-php8/lib/Cake/Log/CakeLogInterface.php
2011-07-26 01:46:14 -04:30

18 lines
No EOL
382 B
PHP

<?php
/**
* CakeLogStreamInterface is the interface that should be implemented
* by all classes that are going to be used as Log streams.
*
* @package Cake.Log
*/
interface CakeLogInterface {
/**
* Write method to handle writes being made to the Logger
*
* @param string $type
* @param string $message
* @return void
*/
public function write($type, $message);
}