graphonline/lib/Debug/ErrorHook/INotifier.php
2017-04-15 01:34:36 +03:00

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);
}