HeaderEncoder.php 488 B

123456789101112131415161718192021222324
  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. * Interface for all Header Encoding schemes.
  11. *
  12. * @author Chris Corbyn
  13. */
  14. interface Swift_Mime_HeaderEncoder extends Swift_Encoder
  15. {
  16. /**
  17. * Get the MIME name of this content encoding scheme.
  18. *
  19. * @return string
  20. */
  21. public function getName();
  22. }