Airship\Engine\Landing::lens PHP Method

lens() protected method

Render a template and terminate execution. Do not cache.
protected lens ( string $name, $cArgs ) : void
$name string
$cArgs Constructor arguments
return void
    protected function lens(string $name, ...$cArgs)
    {
        if (isset($this->airship_lens_override[$name])) {
            $name = $this->airship_lens_override[$name];
        }
        $this->airship_lens_object->display($name, ...$cArgs);
        exit;
    }