Webiny\Component\Entity\Attribute\AbstractCollectionAttribute::offsetSet PHP Method

offsetSet() public method

public offsetSet ( $offset, $value )
    public function offsetSet($offset, $value)
    {
        if ($this->isNull($offset)) {
            $this->getValue()[] = $value;
        } else {
            $this->getValue()[$offset] = $value;
        }
    }