Phalcon\Utils\PrettyExceptions::getApplicationDump PHP Метод

getApplicationDump() защищенный метод

Returns human readable dump of the current Phalcon application instance.
protected getApplicationDump ( Phalcon\Mvc\Application $application )
$application Phalcon\Mvc\Application OPTIONAL To display a dump of the current state of the Phalcon application instance.
    protected function getApplicationDump($application)
    {
        $application = is_null($application) ? $this->_application : $application;
        if (!$this->_showApplicationDump || !$application instanceof \Phalcon\Mvc\Application) {
            return;
        }
        return '<pre class="prettyprint error-scroll">' . print_r($application, true) . '</pre>';
    }