EncodingObserver.php 617B

123456789101112131415161718192021222324252627
  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. * Observes changes for a Mime entity's ContentEncoder.
  11. *
  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. *
  21. * @param Swift_Mime_ContentEncoder $encoder
  22. */
  23. public function encoderChanged(Swift_Mime_ContentEncoder $encoder);
  24. }