Elastica\Result::__isset PHP Method

__isset() public method

Magic function to support isset() calls.
public __isset ( string $key ) : boolean
$key string Key name
return boolean
    public function __isset($key)
    {
        $source = $this->getData();
        return array_key_exists($key, $source) && $source[$key] !== null;
    }