|
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 /** 00012 * Creates StreamFilters. 00013 * @package Swift 00014 * @author Chris Corbyn 00015 */ 00016 interface Swift_ReplacementFilterFactory 00017 { 00018 00019 /** 00020 * Create a filter to replace $search with $replace. 00021 * @param mixed $search 00022 * @param mixed $replace 00023 * @return Swift_StreamFilter 00024 */ 00025 public function createFilter($search, $replace); 00026 00027 }
1.8.0