Services_Hoptoad::setParamsForNotify PHP Method

setParamsForNotify() public method

Set the values to be used for the next notice sent to Hoptoad
Author: Rich Cavanaugh
public setParamsForNotify ( $error_class, $message, $file, $line, $trace, $component = NULL ) : void
return void
    public function setParamsForNotify($error_class, $message, $file, $line, $trace, $component = NULL)
    {
        $this->error_class = $error_class;
        $this->message = $message;
        $this->file = $file;
        $this->line = $line;
        $this->trace = $trace;
        $this->component = $component;
    }