InputInterface.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Console\Input;
  11. use Symfony\Component\Console\Exception\InvalidArgumentException;
  12. use Symfony\Component\Console\Exception\RuntimeException;
  13. /**
  14. * InputInterface is the interface implemented by all input classes.
  15. *
  16. * @author Fabien Potencier <fabien@symfony.com>
  17. */
  18. interface InputInterface
  19. {
  20. /**
  21. * Returns the first argument from the raw parameters (not parsed).
  22. *
  23. * @return string|null
  24. */
  25. public function getFirstArgument();
  26. /**
  27. * Returns true if the raw parameters (not parsed) contain a value.
  28. *
  29. * This method is to be used to introspect the input parameters
  30. * before they have been validated. It must be used carefully.
  31. * Does not necessarily return the correct result for short options
  32. * when multiple flags are combined in the same option.
  33. *
  34. * @param string|array $values The values to look for in the raw parameters (can be an array)
  35. * @param bool $onlyParams Only check real parameters, skip those following an end of options (--) signal
  36. *
  37. * @return bool
  38. */
  39. public function hasParameterOption($values, bool $onlyParams = false);
  40. /**
  41. * Returns the value of a raw option (not parsed).
  42. *
  43. * This method is to be used to introspect the input parameters
  44. * before they have been validated. It must be used carefully.
  45. * Does not necessarily return the correct result for short options
  46. * when multiple flags are combined in the same option.
  47. *
  48. * @param string|array $values The value(s) to look for in the raw parameters (can be an array)
  49. * @param string|bool|int|float|array|null $default The default value to return if no result is found
  50. * @param bool $onlyParams Only check real parameters, skip those following an end of options (--) signal
  51. *
  52. * @return mixed
  53. */
  54. public function getParameterOption($values, $default = false, bool $onlyParams = false);
  55. /**
  56. * Binds the current Input instance with the given arguments and options.
  57. *
  58. * @throws RuntimeException
  59. */
  60. public function bind(InputDefinition $definition);
  61. /**
  62. * Validates the input.
  63. *
  64. * @throws RuntimeException When not enough arguments are given
  65. */
  66. public function validate();
  67. /**
  68. * Returns all the given arguments merged with the default values.
  69. *
  70. * @return array<string|bool|int|float|array|null>
  71. */
  72. public function getArguments();
  73. /**
  74. * Returns the argument value for a given argument name.
  75. *
  76. * @return mixed
  77. *
  78. * @throws InvalidArgumentException When argument given doesn't exist
  79. */
  80. public function getArgument(string $name);
  81. /**
  82. * Sets an argument value by name.
  83. *
  84. * @param mixed $value The argument value
  85. *
  86. * @throws InvalidArgumentException When argument given doesn't exist
  87. */
  88. public function setArgument(string $name, $value);
  89. /**
  90. * Returns true if an InputArgument object exists by name or position.
  91. *
  92. * @return bool
  93. */
  94. public function hasArgument(string $name);
  95. /**
  96. * Returns all the given options merged with the default values.
  97. *
  98. * @return array<string|bool|int|float|array|null>
  99. */
  100. public function getOptions();
  101. /**
  102. * Returns the option value for a given option name.
  103. *
  104. * @return mixed
  105. *
  106. * @throws InvalidArgumentException When option given doesn't exist
  107. */
  108. public function getOption(string $name);
  109. /**
  110. * Sets an option value by name.
  111. *
  112. * @param mixed $value The option value
  113. *
  114. * @throws InvalidArgumentException When option given doesn't exist
  115. */
  116. public function setOption(string $name, $value);
  117. /**
  118. * Returns true if an InputOption object exists by name.
  119. *
  120. * @return bool
  121. */
  122. public function hasOption(string $name);
  123. /**
  124. * Is this input means interactive?
  125. *
  126. * @return bool
  127. */
  128. public function isInteractive();
  129. /**
  130. * Sets the input interactivity.
  131. */
  132. public function setInteractive(bool $interactive);
  133. }