ParameterizedHeader.php 661B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /*
  3. * This file is part of SwiftMailer.
  4. * (c) 2004-2009 Chris Corbyn
  5. *
  6. * For the full copyright and license information, please view the LICENSE
  7. * file that was distributed with this source code.
  8. */
  9. /**
  10. * A MIME Header with parameters.
  11. * @package Swift
  12. * @subpackage Mime
  13. * @author Chris Corbyn
  14. */
  15. interface Swift_Mime_ParameterizedHeader extends Swift_Mime_Header
  16. {
  17. /**
  18. * Set the value of $parameter.
  19. * @param string $parameter
  20. * @param string $value
  21. */
  22. public function setParameter($parameter, $value);
  23. /**
  24. * Get the value of $parameter.
  25. * @return string
  26. */
  27. public function getParameter($parameter);
  28. }