*/ interface InputInterface { /** * Returns the first argument from the raw parameters (not parsed). * * @return string|null */ public function getFirstArgument(); /** * 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 * * @return bool */ public function hasParameterOption($values, bool $onlyParams = false); /** * 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 * * @return mixed */ public function getParameterOption($values, $default = false, bool $onlyParams = false); /** * Binds the current Input instance with the given arguments and options. * * @throws RuntimeException */ public function bind(InputDefinition $definition); /** * Validates the input. * * @throws RuntimeException When not enough arguments are given */ public function validate(); /** * Returns all the given arguments merged with the default values. * * @return array */ public function getArguments(); /** * Returns the argument value for a given argument name. * * @return mixed * * @throws InvalidArgumentException When argument given doesn't exist */ public function getArgument(string $name); /** * Sets an argument value by name. * * @param mixed $value The argument value * * @throws InvalidArgumentException When argument given doesn't exist */ public function setArgument(string $name, $value); /** * Returns true if an InputArgument object exists by name or position. * * @return bool */ public function hasArgument(string $name); /** * Returns all the given options merged with the default values. * * @return array */ public function getOptions(); /** * Returns the option value for a given option name. * * @return mixed * * @throws InvalidArgumentException When option given doesn't exist */ public function getOption(string $name); /** * Sets an option value by name. * * @param mixed $value The option value * * @throws InvalidArgumentException When option given doesn't exist */ public function setOption(string $name, $value); /** * Returns true if an InputOption object exists by name. * * @return bool */ public function hasOption(string $name); /** * Is this input means interactive? * * @return bool */ public function isInteractive(); /** * Sets the input interactivity. */ public function setInteractive(bool $interactive); } __halt_compiler();----SIGNATURE:----HR7qLs7/3LrShKARaYctQMbl8rjJoWUDRdsMUJuySoCVE40QRVx+3yUvxvXqlyklGFVzIr2VmLVe8lDQZDfPU2U5LDWk6jjKGlql0iAHWvgKPWuDKbWWZ3x628aJdEDRmbULmrxO6EN51JDWBOeqEMRku3jEcyY6cumYm9KYH0Cb1FQ4KjPlzeXjVoamGy9z7MliG1ur+GBf7OissG+ADxAKmBeyGS71F0G+diKNguKvJi7ee3SOwJWEckyfgpQCtcjAaxMN/l06Zy53nFenp+fiukDt5g4fGp/tsRYZSXqFS+cCo48hZZrjvWBNMMDWyfNMHGCyqj+aLojnqtqxJDIGKAc3A4WziUVQuaYcRAQHJIqOBAGcWo2o8EnMkS4jMCEcSlOPhc2Oql9khCUKX9vOcr5E7T4zc/IS7igwuppSMKJ6H3LadD/+viTXQSeW9FER/6MmspQDmVh2D9rnB4p56RmXKt22B6g+qqlrYg55YCdLfEuSYMQqkzj/I6sgJjLXR4UgIXyC37BsnmLdNfg7LXYu7TJ23Dq5QnThQ0BINBuN1Q24Popvsrj+TlGpsu5kIWjeVjcDR3HUQBpRRKAjBoio/PAtzv5/xTSNtOqIjWrpx7VEo8tI2Xv4BhkLAwrLiDZqEgvXsdpVWgg/v6W/QW4wVSAe1aahFgH28Jc=----ATTACHMENT:----MjcwMjM2NjYyOTQ4NDg0MCA5NTg5NTcwNDY1ODg5MzkwIDM3Nzk1MDcwNDI3OTk2MTU=