Seditio Source
Root |
./othercms/xenForo 2.2.8/src/XF/Install/View/Error/Server.php
<?php

namespace XF\Install\View\Error;

class
Server extends \XF\Mvc\View
{
    public function
renderHtml()
    {
       
$e = $this->params['exception'] ?? null;
        return
$this->renderExceptionHtml($e);
    }

    public function
renderJson()
    {
       
$e = $this->params['exception'] ?? null;
       
$html = $this->renderExceptionHtml($e, $error);

        return [
           
'exception' => $error,
           
'errorHtml' => $html
       
];
    }

    public function
renderXml()
    {
       
$e = $this->params['exception'] ?? null;
        return
$this->renderExceptionXml($e)->saveXML();
    }
}