1 | <?php |
||
7 | final class CharsetMeta implements MetaItem |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | private $charset; |
||
13 | |||
14 | /** |
||
15 | * @param string $charset |
||
16 | * |
||
17 | * @return MetaItem |
||
18 | */ |
||
19 | public static function create($charset) : MetaItem { |
||
22 | |||
23 | /** |
||
24 | * @return string |
||
25 | */ |
||
26 | public function render() : string { |
||
29 | |||
30 | /** |
||
31 | * CharsetMeta constructor. |
||
32 | * |
||
33 | * @param string $charset |
||
34 | */ |
||
35 | public function __construct(string $charset) { |
||
38 | } |
||
39 |