Dietcube\Controller::json PHP Method

json() protected method

Helper method to respond JSON.
protected json ( array $vars, string | null $charset = 'utf-8' ) : string
$vars array
$charset string | null
return string JSON encoded string
    protected function json($vars, $charset = 'utf-8')
    {
        $this->getResponse()->setHeader('Content-Type', 'application/json;charset=' . $charset);
        return json_encode($vars);
    }