MrClay\Cli\Arg::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( boolean $isRequired = false )
$isRequired boolean
    public function __construct($isRequired = false)
    {
        $this->spec = $this->getDefaultSpec();
        $this->required = (bool) $isRequired;
        if ($isRequired) {
            $this->spec['mustHaveValue'] = true;
        }
    }