org\Verify::__set PHP Method

__set() public method

设置验证码配置
public __set ( string $name, string $value ) : void
$name string 配置名称
$value string 配置值
return void
    public function __set($name, $value)
    {
        if (isset($this->config[$name])) {
            $this->config[$name] = $value;
        }
    }