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

Breadcrumb

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

interface InputInterface

InputInterface is the interface implemented by all input classes.

@author Fabien Potencier <fabien@symfony.com>

Hierarchy

  • interface \Symfony\Component\Console\Input\InputInterface

Expanded class hierarchy of InputInterface

All classes that implement InputInterface

77 files declare their use of InputInterface
AboutCommand.php in vendor/composer/composer/src/Composer/Command/AboutCommand.php
Application.php in vendor/composer/composer/src/Composer/Console/Application.php
Application.php in vendor/symfony/console/Application.php
ArchiveCommand.php in vendor/composer/composer/src/Composer/Command/ArchiveCommand.php
AuditCommand.php in vendor/composer/composer/src/Composer/Command/AuditCommand.php

... See full list

File

vendor/symfony/console/Input/InputInterface.php, line 22

Namespace

Symfony\Component\Console\Input
View source
interface InputInterface {
    
    /**
     * Returns the first argument from the raw parameters (not parsed).
     */
    public function getFirstArgument() : ?string;
    
    /**
     * Returns true if the raw parameters (not parsed) contain a value.
     *
     * This method is to be used to introspect the input parameters
     * before they have been validated. It must be used carefully.
     * Does not necessarily return the correct result for short options
     * when multiple flags are combined in the same option.
     *
     * @param string|array $values     The values to look for in the raw parameters (can be an array)
     * @param bool         $onlyParams Only check real parameters, skip those following an end of options (--) signal
     */
    public function hasParameterOption(string|array $values, bool $onlyParams = false) : bool;
    
    /**
     * Returns the value of a raw option (not parsed).
     *
     * This method is to be used to introspect the input parameters
     * before they have been validated. It must be used carefully.
     * Does not necessarily return the correct result for short options
     * when multiple flags are combined in the same option.
     *
     * @param string|array                     $values     The value(s) to look for in the raw parameters (can be an array)
     * @param string|bool|int|float|array|null $default    The default value to return if no result is found
     * @param bool                             $onlyParams Only check real parameters, skip those following an end of options (--) signal
     */
    public function getParameterOption(string|array $values, string|bool|int|float|array|null $default = false, bool $onlyParams = false) : mixed;
    
    /**
     * Binds the current Input instance with the given arguments and options.
     *
     * @throws RuntimeException
     */
    public function bind(InputDefinition $definition) : void;
    
    /**
     * Validates the input.
     *
     * @throws RuntimeException When not enough arguments are given
     */
    public function validate() : void;
    
    /**
     * Returns all the given arguments merged with the default values.
     *
     * @return array<string|bool|int|float|array|null>
     */
    public function getArguments() : array;
    
    /**
     * Returns the argument value for a given argument name.
     *
     * @throws InvalidArgumentException When argument given doesn't exist
     */
    public function getArgument(string $name) : mixed;
    
    /**
     * Sets an argument value by name.
     *
     * @throws InvalidArgumentException When argument given doesn't exist
     */
    public function setArgument(string $name, mixed $value) : void;
    
    /**
     * Returns true if an InputArgument object exists by name or position.
     */
    public function hasArgument(string $name) : bool;
    
    /**
     * Returns all the given options merged with the default values.
     *
     * @return array<string|bool|int|float|array|null>
     */
    public function getOptions() : array;
    
    /**
     * Returns the option value for a given option name.
     *
     * @throws InvalidArgumentException When option given doesn't exist
     */
    public function getOption(string $name) : mixed;
    
    /**
     * Sets an option value by name.
     *
     * @throws InvalidArgumentException When option given doesn't exist
     */
    public function setOption(string $name, mixed $value) : void;
    
    /**
     * Returns true if an InputOption object exists by name.
     */
    public function hasOption(string $name) : bool;
    
    /**
     * Is this input means interactive?
     */
    public function isInteractive() : bool;
    
    /**
     * Sets the input interactivity.
     */
    public function setInteractive(bool $interactive) : void;
    
    /**
     * Returns a stringified representation of the args passed to the command.
     *
     * InputArguments MUST be escaped as well as the InputOption values passed to the command.
     */
    public function __toString() : string;

}

Members

Title Sort descending Modifiers Object type Summary Overrides
InputInterface::bind public function Binds the current Input instance with the given arguments and options. 1
InputInterface::getArgument public function Returns the argument value for a given argument name. 1
InputInterface::getArguments public function Returns all the given arguments merged with the default values. 1
InputInterface::getFirstArgument public function Returns the first argument from the raw parameters (not parsed). 2
InputInterface::getOption public function Returns the option value for a given option name. 1
InputInterface::getOptions public function Returns all the given options merged with the default values. 1
InputInterface::getParameterOption public function Returns the value of a raw option (not parsed). 2
InputInterface::hasArgument public function Returns true if an InputArgument object exists by name or position. 1
InputInterface::hasOption public function Returns true if an InputOption object exists by name. 1
InputInterface::hasParameterOption public function Returns true if the raw parameters (not parsed) contain a value. 2
InputInterface::isInteractive public function Is this input means interactive? 1
InputInterface::setArgument public function Sets an argument value by name. 1
InputInterface::setInteractive public function Sets the input interactivity. 1
InputInterface::setOption public function Sets an option value by name. 1
InputInterface::validate public function Validates the input. 1
InputInterface::__toString public function Returns a stringified representation of the args passed to the command. 2

API Navigation

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