PHPDaemon\Config\Object::offsetExists PHP Метод

offsetExists() публичный Метод

Checks if property exists
public offsetExists ( $prop ) : boolean
Результат boolean Exists?
    public function offsetExists($prop)
    {
        $prop = $this->getRealPropertyName($prop);
        return property_exists($this, $prop);
    }