Recca0120\LaravelTracy\Exceptions\Handler::renderForConsole PHP Метод

renderForConsole() публичный Метод

Render an exception to the console.
public renderForConsole ( Symfony\Component\Console\Output\OutputInterface $output, Exception $e )
$output Symfony\Component\Console\Output\OutputInterface
$e Exception
    public function renderForConsole($output, Exception $e)
    {
        if (is_null($this->exceptionHandler) === false) {
            $this->exceptionHandler->renderForConsole($output, $e);
        }
    }

Same methods

Handler::renderForConsole ( Symfony\Component\Console\Output\OutputInterface $output, Exception $e ) : void