1 | <?php |
||
8 | class IconvTransformer implements TransformerInterface |
||
9 | { |
||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | protected $inCharset; |
||
14 | |||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | protected $outCharset; |
||
19 | |||
20 | 1 | public function __construct($inCharset, $outCharset) |
|
25 | |||
26 | /** |
||
27 | * @inheritdoc |
||
28 | */ |
||
29 | 1 | public function transform(array $data) |
|
41 | } |
||
42 |