Webmozart\Console\Api\Args\Format\ArgsFormat::hasRequiredArgument PHP Method

hasRequiredArgument() public method

Returns whether the format contains a required argument.
public hasRequiredArgument ( boolean $includeBase = true ) : boolean
$includeBase boolean Whether to include arguments in the base format in the search.
return boolean Returns `true` if the format contains a required argument and `false` otherwise.
    public function hasRequiredArgument($includeBase = true)
    {
        Assert::boolean($includeBase, 'The parameter $includeBase must be a boolean. Got: %s');
        if (!$this->hasOptionalArg && count($this->arguments) > 0) {
            return true;
        }
        if ($includeBase && $this->baseFormat) {
            return $this->baseFormat->hasRequiredArgument();
        }
        return false;
    }

Usage Example

Exemplo n.º 1
0
 /**
  * Returns whether the builder contains a required argument.
  *
  * @param bool $includeBase Whether to include arguments in the base format
  *                          in the search.
  *
  * @return bool Returns `true` if the builder contains a required argument
  *              and `false` otherwise.
  */
 public function hasRequiredArgument($includeBase = true)
 {
     Assert::boolean($includeBase, 'The parameter $includeBase must be a boolean. Got: %s');
     if (!$this->hasOptionalArg && count($this->arguments) > 0) {
         return true;
     }
     if ($includeBase && $this->baseFormat) {
         return $this->baseFormat->hasRequiredArgument();
     }
     return false;
 }
All Usage Examples Of Webmozart\Console\Api\Args\Format\ArgsFormat::hasRequiredArgument