yii\base\ArrayAccessTrait::offsetExists PHP Method

offsetExists() public method

This method is required by the interface [[\ArrayAccess]].
public offsetExists ( mixed $offset ) : boolean
$offset mixed the offset to check on
return boolean
    public function offsetExists($offset)
    {
        return isset($this->data[$offset]);
    }