|
TYPO3 API
SVNRelease
|
00001 <?php 00002 00003 /* 00004 * This file is part of SwiftMailer. 00005 * (c) 2004-2009 Chris Corbyn 00006 * 00007 * For the full copyright and license information, please view the LICENSE 00008 * file that was distributed with this source code. 00009 */ 00010 00011 //@require 'Swift/Mime/ContentEncoder.php'; 00012 00013 /** 00014 * Observes changes for a Mime entity's ContentEncoder. 00015 * @package Swift 00016 * @subpackage Mime 00017 * @author Chris Corbyn 00018 */ 00019 interface Swift_Mime_EncodingObserver 00020 { 00021 00022 /** 00023 * Notify this observer that the observed entity's ContentEncoder has changed. 00024 * @param Swift_Mime_ContentEncoder $encoder 00025 */ 00026 public function encoderChanged(Swift_Mime_ContentEncoder $encoder); 00027 00028 }
1.8.0