Services_Hoptoad::installNotifierHandlers PHP Method

installNotifierHandlers() public method

Hook's this notifier to PHP error and exception handlers
Author: Rich Cavanaugh
public installNotifierHandlers ( ) : void
return void
    public function installNotifierHandlers()
    {
        set_error_handler(array($this, "errorHandler"));
        set_exception_handler(array($this, "exceptionHandler"));
    }