1 | <?php |
||
12 | class CharsetValueConverter |
||
13 | { |
||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | private $charset; |
||
18 | |||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | private $inCharset; |
||
23 | |||
24 | /** |
||
25 | * @param string $charset Charset to convert values to |
||
26 | * @param string $inCharset Charset of input values |
||
27 | */ |
||
28 | 1 | public function __construct($charset, $inCharset = 'UTF-8') |
|
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | 1 | public function __invoke($input) |
|
49 | } |
||
50 |