PHPDaemon\Config\Object::offsetExists PHP Méthode

offsetExists() public méthode

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