HelperSet.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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\Helper;
  11. use Symfony\Component\Console\Command\Command;
  12. use Symfony\Component\Console\Exception\InvalidArgumentException;
  13. /**
  14. * HelperSet represents a set of helpers to be used with a command.
  15. *
  16. * @author Fabien Potencier <fabien@symfony.com>
  17. *
  18. * @implements \IteratorAggregate<string, Helper>
  19. */
  20. class HelperSet implements \IteratorAggregate
  21. {
  22. /** @var array<string, Helper> */
  23. private $helpers = [];
  24. private $command;
  25. /**
  26. * @param Helper[] $helpers An array of helper
  27. */
  28. public function __construct(array $helpers = [])
  29. {
  30. foreach ($helpers as $alias => $helper) {
  31. $this->set($helper, \is_int($alias) ? null : $alias);
  32. }
  33. }
  34. public function set(HelperInterface $helper, string $alias = null)
  35. {
  36. $this->helpers[$helper->getName()] = $helper;
  37. if (null !== $alias) {
  38. $this->helpers[$alias] = $helper;
  39. }
  40. $helper->setHelperSet($this);
  41. }
  42. /**
  43. * Returns true if the helper if defined.
  44. *
  45. * @return bool
  46. */
  47. public function has(string $name)
  48. {
  49. return isset($this->helpers[$name]);
  50. }
  51. /**
  52. * Gets a helper value.
  53. *
  54. * @return HelperInterface
  55. *
  56. * @throws InvalidArgumentException if the helper is not defined
  57. */
  58. public function get(string $name)
  59. {
  60. if (!$this->has($name)) {
  61. throw new InvalidArgumentException(sprintf('The helper "%s" is not defined.', $name));
  62. }
  63. return $this->helpers[$name];
  64. }
  65. /**
  66. * @deprecated since Symfony 5.4
  67. */
  68. public function setCommand(Command $command = null)
  69. {
  70. trigger_deprecation('symfony/console', '5.4', 'Method "%s()" is deprecated.', __METHOD__);
  71. $this->command = $command;
  72. }
  73. /**
  74. * Gets the command associated with this helper set.
  75. *
  76. * @return Command
  77. *
  78. * @deprecated since Symfony 5.4
  79. */
  80. public function getCommand()
  81. {
  82. trigger_deprecation('symfony/console', '5.4', 'Method "%s()" is deprecated.', __METHOD__);
  83. return $this->command;
  84. }
  85. /**
  86. * @return \Traversable<string, Helper>
  87. */
  88. #[\ReturnTypeWillChange]
  89. public function getIterator()
  90. {
  91. return new \ArrayIterator($this->helpers);
  92. }
  93. }