mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-01 15:26:12 +00:00
20 lines
421 B
PHP
Executable File
20 lines
421 B
PHP
Executable File
<?php
|
|
/**
|
|
* Notifier interface.
|
|
* Should be implemented by all notifiers in the stack.
|
|
*/
|
|
interface Debug_ErrorHook_INotifier
|
|
{
|
|
/**
|
|
* Called when an error occurred.
|
|
*
|
|
* @param string $errno
|
|
* @param string $errstr
|
|
* @param string $errfile
|
|
* @param string $errline
|
|
* @param array $trace
|
|
* @return void
|
|
*/
|
|
public function notify($errno, $errstr, $errfile, $errline, $trace);
|
|
}
|