Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. InputOption.php

class InputOption

Same name in this branch
  1. 11.1.x vendor/composer/composer/src/Composer/Console/Input/InputOption.php \Composer\Console\Input\InputOption

Represents a command line option.

@author Fabien Potencier <fabien@symfony.com>

Hierarchy

  • class \Symfony\Component\Console\Input\InputOption

Expanded class hierarchy of InputOption

32 files declare their use of InputOption
Application.php in vendor/composer/composer/src/Composer/Console/Application.php
Application.php in vendor/symfony/console/Application.php
ClearCacheCommand.php in vendor/composer/composer/src/Composer/Command/ClearCacheCommand.php
Command.php in vendor/symfony/console/Command/Command.php
CompleteCommand.php in vendor/symfony/console/Command/CompleteCommand.php

... See full list

File

vendor/symfony/console/Input/InputOption.php, line 26

Namespace

Symfony\Component\Console\Input
View source
class InputOption {
    
    /**
     * Do not accept input for the option (e.g. --yell). This is the default behavior of options.
     */
    public const VALUE_NONE = 1;
    
    /**
     * A value must be passed when the option is used (e.g. --iterations=5 or -i5).
     */
    public const VALUE_REQUIRED = 2;
    
    /**
     * The option may or may not have a value (e.g. --yell or --yell=loud).
     */
    public const VALUE_OPTIONAL = 4;
    
    /**
     * The option accepts multiple values (e.g. --dir=/foo --dir=/bar).
     */
    public const VALUE_IS_ARRAY = 8;
    
    /**
     * The option allows passing a negated variant (e.g. --ansi or --no-ansi).
     */
    public const VALUE_NEGATABLE = 16;
    private string $name;
    private ?string $shortcut;
    private int $mode;
    private string|int|bool|array|float|null $default;
    
    /**
     * @param string|array|null                                                             $shortcut        The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts
     * @param int-mask-of<InputOption::*>|null                                              $mode            The option mode: One of the VALUE_* constants
     * @param string|bool|int|float|array|null                                              $default         The default value (must be null for self::VALUE_NONE)
     * @param array|\Closure(CompletionInput,CompletionSuggestions):list<string|Suggestion> $suggestedValues The values used for input completion
     *
     * @throws InvalidArgumentException If option mode is invalid or incompatible
     */
    public function __construct(string $name, string|array|null $shortcut = null, ?int $mode = null, string $description = '', string|bool|int|float|array|null $default = null, array|\Closure $suggestedValues = []) {
        if (str_starts_with($name, '--')) {
            $name = substr($name, 2);
        }
        if (!$name) {
            throw new InvalidArgumentException('An option name cannot be empty.');
        }
        if ('' === $shortcut || [] === $shortcut || false === $shortcut) {
            $shortcut = null;
        }
        if (null !== $shortcut) {
            if (\is_array($shortcut)) {
                $shortcut = implode('|', $shortcut);
            }
            $shortcuts = preg_split('{(\\|)-?}', ltrim($shortcut, '-'));
            $shortcuts = array_filter($shortcuts, 'strlen');
            $shortcut = implode('|', $shortcuts);
            if ('' === $shortcut) {
                throw new InvalidArgumentException('An option shortcut cannot be empty.');
            }
        }
        if (null === $mode) {
            $mode = self::VALUE_NONE;
        }
        elseif ($mode >= self::VALUE_NEGATABLE << 1 || $mode < 1) {
            throw new InvalidArgumentException(\sprintf('Option mode "%s" is not valid.', $mode));
        }
        $this->name = $name;
        $this->shortcut = $shortcut;
        $this->mode = $mode;
        if ($suggestedValues && !$this->acceptValue()) {
            throw new LogicException('Cannot set suggested values if the option does not accept a value.');
        }
        if ($this->isArray() && !$this->acceptValue()) {
            throw new InvalidArgumentException('Impossible to have an option mode VALUE_IS_ARRAY if the option does not accept a value.');
        }
        if ($this->isNegatable() && $this->acceptValue()) {
            throw new InvalidArgumentException('Impossible to have an option mode VALUE_NEGATABLE if the option also accepts a value.');
        }
        $this->setDefault($default);
    }
    
    /**
     * Returns the option shortcut.
     */
    public function getShortcut() : ?string {
        return $this->shortcut;
    }
    
    /**
     * Returns the option name.
     */
    public function getName() : string {
        return $this->name;
    }
    
    /**
     * Returns true if the option accepts a value.
     *
     * @return bool true if value mode is not self::VALUE_NONE, false otherwise
     */
    public function acceptValue() : bool {
        return $this->isValueRequired() || $this->isValueOptional();
    }
    
    /**
     * Returns true if the option requires a value.
     *
     * @return bool true if value mode is self::VALUE_REQUIRED, false otherwise
     */
    public function isValueRequired() : bool {
        return self::VALUE_REQUIRED === (self::VALUE_REQUIRED & $this->mode);
    }
    
    /**
     * Returns true if the option takes an optional value.
     *
     * @return bool true if value mode is self::VALUE_OPTIONAL, false otherwise
     */
    public function isValueOptional() : bool {
        return self::VALUE_OPTIONAL === (self::VALUE_OPTIONAL & $this->mode);
    }
    
    /**
     * Returns true if the option can take multiple values.
     *
     * @return bool true if mode is self::VALUE_IS_ARRAY, false otherwise
     */
    public function isArray() : bool {
        return self::VALUE_IS_ARRAY === (self::VALUE_IS_ARRAY & $this->mode);
    }
    
    /**
     * Returns true if the option allows passing a negated variant.
     *
     * @return bool true if mode is self::VALUE_NEGATABLE, false otherwise
     */
    public function isNegatable() : bool {
        return self::VALUE_NEGATABLE === (self::VALUE_NEGATABLE & $this->mode);
    }
    
    /**
     * Sets the default value.
     */
    public function setDefault(string|bool|int|float|array|null $default) : void {
        if (self::VALUE_NONE === (self::VALUE_NONE & $this->mode) && null !== $default) {
            throw new LogicException('Cannot set a default value when using InputOption::VALUE_NONE mode.');
        }
        if ($this->isArray()) {
            if (null === $default) {
                $default = [];
            }
            elseif (!\is_array($default)) {
                throw new LogicException('A default value for an array option must be an array.');
            }
        }
        $this->default = $this->acceptValue() || $this->isNegatable() ? $default : false;
    }
    
    /**
     * Returns the default value.
     */
    public function getDefault() : string|bool|int|float|array|null {
        return $this->default;
    }
    
    /**
     * Returns the description text.
     */
    public function getDescription() : string {
        return $this->description;
    }
    
    /**
     * Returns true if the option has values for input completion.
     */
    public function hasCompletion() : bool {
        return [] !== $this->suggestedValues;
    }
    
    /**
     * Supplies suggestions when command resolves possible completion options for input.
     *
     * @see Command::complete()
     */
    public function complete(CompletionInput $input, CompletionSuggestions $suggestions) : void {
        $values = $this->suggestedValues;
        if ($values instanceof \Closure && !\is_array($values = $values($input))) {
            throw new LogicException(\sprintf('Closure for option "%s" must return an array. Got "%s".', $this->name, get_debug_type($values)));
        }
        if ($values) {
            $suggestions->suggestValues($values);
        }
    }
    
    /**
     * Checks whether the given option equals this one.
     */
    public function equals(self $option) : bool {
        return $option->getName() === $this->getName() && $option->getShortcut() === $this->getShortcut() && $option->getDefault() === $this->getDefault() && $option->isNegatable() === $this->isNegatable() && $option->isArray() === $this->isArray() && $option->isValueRequired() === $this->isValueRequired() && $option->isValueOptional() === $this->isValueOptional();
    }

}

Members

Title Sort descending Modifiers Object type Summary Overrides
InputOption::$default private property
InputOption::$mode private property
InputOption::$name private property
InputOption::$shortcut private property
InputOption::acceptValue public function Returns true if the option accepts a value.
InputOption::complete public function Supplies suggestions when command resolves possible completion options for input. 1
InputOption::equals public function Checks whether the given option equals this one.
InputOption::getDefault public function Returns the default value.
InputOption::getDescription public function Returns the description text.
InputOption::getName public function Returns the option name.
InputOption::getShortcut public function Returns the option shortcut.
InputOption::hasCompletion public function Returns true if the option has values for input completion.
InputOption::isArray public function Returns true if the option can take multiple values.
InputOption::isNegatable public function Returns true if the option allows passing a negated variant.
InputOption::isValueOptional public function Returns true if the option takes an optional value.
InputOption::isValueRequired public function Returns true if the option requires a value.
InputOption::setDefault public function Sets the default value.
InputOption::VALUE_IS_ARRAY public constant The option accepts multiple values (e.g. --dir=/foo --dir=/bar).
InputOption::VALUE_NEGATABLE public constant The option allows passing a negated variant (e.g. --ansi or --no-ansi).
InputOption::VALUE_NONE public constant Do not accept input for the option (e.g. --yell). This is the default behavior of options.
InputOption::VALUE_OPTIONAL public constant The option may or may not have a value (e.g. --yell or --yell=loud).
InputOption::VALUE_REQUIRED public constant A value must be passed when the option is used (e.g. --iterations=5 or -i5).
InputOption::__construct public function 1

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal