Phprest\Config::getErrorHandler PHP Method

getErrorHandler() public method

public getErrorHandler ( ) : League\BooBoo\Runner
return League\BooBoo\Runner
    public function getErrorHandler()
    {
        return $this->errorHandler;
    }

Usage Example

Example #1
0
 /**
  * @return void
  */
 protected function setErrorHandler()
 {
     $app = $this;
     $this->configuration->getLogHandler()->setLogger($this->serviceLogger());
     $this->configuration->getErrorHandler()->pushHandler($this->configuration->getLogHandler());
     $this->configuration->getErrorHandler()->register();
     $this->setExceptionDecorator(function (\Exception $e) use($app) {
         $formatter = new ErrorHandler\Formatter\JsonXml($app->configuration);
         return new Response($formatter->format($e), http_response_code());
     });
 }
All Usage Examples Of Phprest\Config::getErrorHandler