/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
- <?php
- /*
- * This file is part of SwiftMailer.
- * (c) 2004-2009 Chris Corbyn
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- //@require 'Swift/Encoder.php';
- /**
- * Interface for all Header Encoding schemes.
- * @package Swift
- * @subpackage Mime
- * @author Chris Corbyn
- */
- interface Swift_Mime_HeaderEncoder extends Swift_Encoder
- {
-
- /**
- * Get the MIME name of this content encoding scheme.
- * @return string
- */
- public function getName();
-
- }