/framework/vendor/swift/lib/classes/Swift/Mime/HeaderEncoder.php

http://zoop.googlecode.com/ · PHP · 28 lines · 5 code · 5 blank · 18 comment · 0 complexity · 57b9546649abf5da7923d4683247f90b MD5 · raw file

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