equal
deleted
inserted
replaced
|
1 <?php |
|
2 |
|
3 /* |
|
4 * This file is part of SwiftMailer. |
|
5 * (c) 2004-2009 Chris Corbyn |
|
6 * |
|
7 * For the full copyright and license information, please view the LICENSE |
|
8 * file that was distributed with this source code. |
|
9 */ |
|
10 |
|
11 |
|
12 /** |
|
13 * A factory for creating CharacterReaders. |
|
14 * @package Swift |
|
15 * @subpackage Encoder |
|
16 * @author Chris Corbyn |
|
17 */ |
|
18 interface Swift_CharacterReaderFactory |
|
19 { |
|
20 |
|
21 /** |
|
22 * Returns a CharacterReader suitable for the charset applied. |
|
23 * @param string $charset |
|
24 * @return Swift_CharacterReader |
|
25 */ |
|
26 public function getReaderFor($charset); |
|
27 |
|
28 } |