Spot\Entity\Collection::offsetSet PHP 메소드

offsetSet() 공개 메소드

public offsetSet ( $key, $value )
    public function offsetSet($key, $value)
    {
        if ($key === null) {
            return $this->_results[] = $value;
        } else {
            return $this->_results[$key] = $value;
        }
    }