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

http://zoop.googlecode.com/ · PHP · 28 lines · 5 code · 5 blank · 18 comment · 0 complexity · b6426ba6414d1099257ae86d1c9d8b9c 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/Mime/ContentEncoder.php';
  10. /**
  11. * Observes changes for a Mime entity's ContentEncoder.
  12. * @package Swift
  13. * @subpackage Mime
  14. * @author Chris Corbyn
  15. */
  16. interface Swift_Mime_EncodingObserver
  17. {
  18. /**
  19. * Notify this observer that the observed entity's ContentEncoder has changed.
  20. * @param Swift_Mime_ContentEncoder $encoder
  21. */
  22. public function encoderChanged(Swift_Mime_ContentEncoder $encoder);
  23. }