mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
18 lines
No EOL
382 B
PHP
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);
|
|
} |