Imbo\Model\Stats::offsetSet PHP 메소드

offsetSet() 공개 메소드

public offsetSet ( $offset, $value )
    public function offsetSet($offset, $value)
    {
        if ($offset === null) {
            throw new InvalidArgumentException('Custom statistics requires a key to be set', 500);
        }
        $this->customStats[$offset] = $value;
    }