Phalcon\Db\Adapter\MongoDB\Model\IndexInfo::offsetExists PHP Method

offsetExists() public method

Check whether a field exists in the index information.
See also: http://php.net/arrayaccess.offsetexists
public offsetExists ( mixed $key ) : boolean
$key mixed
return boolean
    public function offsetExists($key)
    {
        return array_key_exists($key, $this->info);
    }