2018-08-30 11:06:15 -04:00
|
|
|
<?php
|
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2018 J. King et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace MensBeam\Intl\Encoding;
|
|
|
|
|
|
|
|
class UTF16BE extends UTF16 {
|
2020-10-24 22:53:12 -04:00
|
|
|
protected const BE = true;
|
|
|
|
public const NAME = "UTF-16BE";
|
|
|
|
public const LABELS = [
|
2020-10-15 10:39:44 -04:00
|
|
|
"unicodefffe",
|
|
|
|
"utf-16be",
|
2020-10-05 16:06:11 -04:00
|
|
|
];
|
2018-08-30 11:06:15 -04:00
|
|
|
}
|