Scalr\System\Config\Extension::defined PHP Method

defined() public method

Checks whether scalar node is defined
public defined ( string $name ) : boolean
$name string Dot notation key
return boolean Returns true if config node is defined
    public function defined($name)
    {
        return array_key_exists($name, $this->parameters);
    }