Spot\Entity\Collection::offsetUnset PHP Method

offsetUnset() public method

public offsetUnset ( $key )
    public function offsetUnset($key)
    {
        if (is_int($key)) {
            array_splice($this->_results, $key, 1);
        } else {
            unset($this->_results[$key]);
        }
    }