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 | 20 | public static function create($charset) : MetaItem { |
|
22 | |||
23 | /** |
||
24 | * @return string |
||
25 | */ |
||
26 | 16 | public function render(array $extra = []) : string { |
|
29 | |||
30 | /** |
||
31 | * CharsetMeta constructor. |
||
32 | * |
||
33 | * @param string $charset |
||
34 | */ |
||
35 | 20 | public function __construct(string $charset) { |
|
38 | } |
||
39 |