Bolt\Controller\Backend\Database::updateResult PHP Method

updateResult() public method

Show the result of database updates.
public updateResult ( ) : TemplateResponse
return Bolt\Response\TemplateResponse
    public function updateResult()
    {
        $output = $this->session()->get('dbupdate_result', []);
        $context = ['changes' => $output, 'check' => null, 'debug' => false, 'alters' => null, 'creates' => null, 'diffs' => null];
        return $this->render('@bolt/dbcheck/dbcheck.twig', $context);
    }