/framework/vendor/swift/lib/classes/Swift/ReplacementFilterFactory.php

http://zoop.googlecode.com/ · PHP · 27 lines · 5 code · 4 blank · 18 comment · 0 complexity · 59d28632d19e3ad8025c93de33d819a4 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. /**
  10. * Creates StreamFilters.
  11. * @package Swift
  12. * @author Chris Corbyn
  13. */
  14. interface Swift_ReplacementFilterFactory
  15. {
  16. /**
  17. * Create a filter to replace $search with $replace.
  18. * @param mixed $search
  19. * @param mixed $replace
  20. * @return Swift_StreamFilter
  21. */
  22. public function createFilter($search, $replace);
  23. }