VALUE_NONE
VALUE_NONE = 1
__construct(string $name, string|array $shortcut = null, integer $mode = null, string $description = '', mixed $default = null)
构造方法
| string | $name | 选项名  | 
                            
| string|array | $shortcut | 短名称,多个用|隔开或者使用数组  | 
                            
| integer | $mode | 选项类型(可选类型为 self::VALUE_*)  | 
                            
| string | $description | 描述  | 
                            
| mixed | $default | 默认值 (类型为 self::VALUE_REQUIRED 或者 self::VALUE_NONE 的时候必须为null)  | 
                            
equals(\think\console\input\Option  $option) : boolean
                检查所给选项是否是当前这个
| \think\console\input\Option | $option |