Elgg\DeprecationWrapper::offsetExists PHP Метод

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

Array access interface
См. также: ArrayAccess::offsetExists()
public offsetExists ( mixed $offset ) : boolean
$offset mixed Offset
Результат boolean
    public function offsetExists($offset)
    {
        $this->displayWarning();
        if (is_object($this->object) && !$this->object instanceof \ArrayAccess) {
            return isset($this->object->{$offset});
        } else {
            return array_key_exists($offset, $this->object);
        }
    }