CharsetObserver.php 533B

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 in an Mime entity's character set.
  11. * @package Swift
  12. * @subpackage Mime
  13. * @author Chris Corbyn
  14. */
  15. interface Swift_Mime_CharsetObserver
  16. {
  17. /**
  18. * Notify this observer that the entity's charset has changed.
  19. * @param string $charset
  20. */
  21. public function charsetChanged($charset);
  22. }