Thenbsp\Wechat\Message\Template\Template::add PHP Method

add() public method

添加模板参数
public add ( $key, $value, $color = null )
    public function add($key, $value, $color = null)
    {
        $array = array('value' => $value);
        if (!is_null($color)) {
            $array['color'] = $color;
        }
        $this->options[$key] = $array;
        return $this;
    }