Habari\RawPHPEngine::assigned PHP Method

assigned() public method

Detects if a variable is assigned to the template engine for use in constructing the template's output.
public assigned ( string $key )
$key string name of variable
    public function assigned($key)
    {
        return isset($this->{$key});
    }