Fenos\Notifynder\Builder\NotifynderBuilder::offsetSet PHP Method

offsetSet() public method

public offsetSet ( mixed $offset, mixed $value )
$offset mixed
$value mixed
    public function offsetSet($offset, $value)
    {
        if (method_exists($this, $offset)) {
            return $this->{$offset}($value);
        }
        if ($this->isRequiredField($offset)) {
            $this->notifications[$offset] = $value;
        }
    }