HelperInterface.php 892 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. /**
  12. * HelperInterface is the interface all helpers must implement.
  13. *
  14. * @author Fabien Potencier <fabien@symfony.com>
  15. */
  16. interface HelperInterface
  17. {
  18. /**
  19. * Sets the helper set associated with this helper.
  20. *
  21. * @return void
  22. * @param \Symfony\Component\Console\Helper\HelperSet|null $helperSet
  23. */
  24. public function setHelperSet($helperSet);
  25. /**
  26. * Gets the helper set associated with this helper.
  27. */
  28. public function getHelperSet();
  29. /**
  30. * Returns the canonical name of this helper.
  31. *
  32. * @return string
  33. */
  34. public function getName();
  35. }