mirror of
https://github.com/UnickSoft/graphonline.git
synced 2026-02-16 10:40:57 +00:00
first commit
This commit is contained in:
19
lib/Debug/ErrorHook/INotifier.php
Executable file
19
lib/Debug/ErrorHook/INotifier.php
Executable file
@@ -0,0 +1,19 @@
|
||||
<?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);
|
||||
}
|
||||
Reference in New Issue
Block a user