Eloquent\Phony\Spy\ArraySpy::offsetExists PHP Method

offsetExists() public method

Check if a key exists.
public offsetExists ( mixed $key ) : boolean
$key mixed The key.
return boolean True if the key exists.
    public function offsetExists($key)
    {
        return isset($this->array[$key]);
    }