PHPDaemon\Config\Object::offsetExists PHP Method

offsetExists() public method

Checks if property exists
public offsetExists ( $prop ) : boolean
return boolean Exists?
    public function offsetExists($prop)
    {
        $prop = $this->getRealPropertyName($prop);
        return property_exists($this, $prop);
    }