HelperInterface.php 927 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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\Templating\Helper;
  11. /**
  12. * HelperInterface is the interface all helpers must implement.
  13. *
  14. * @author Fabien Potencier <fabien@symfony.com>
  15. *
  16. * @api
  17. */
  18. interface HelperInterface
  19. {
  20. /**
  21. * Returns the canonical name of this helper.
  22. *
  23. * @return string The canonical name
  24. *
  25. * @api
  26. */
  27. public function getName();
  28. /**
  29. * Sets the default charset.
  30. *
  31. * @param string $charset The charset
  32. *
  33. * @api
  34. */
  35. public function setCharset($charset);
  36. /**
  37. * Gets the default charset.
  38. *
  39. * @return string The default charset
  40. *
  41. * @api
  42. */
  43. public function getCharset();
  44. }