| Total Complexity | 1 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | final class Cbor |
||
| 6 | { |
||
| 7 | public const MAJOR_UNSIGNED_INT = 0; |
||
| 8 | |||
| 9 | public const MAJOR_TEXT_STRING = 3; |
||
| 10 | |||
| 11 | public const MAJOR_FLOAT_SIMPLE = 7; |
||
| 12 | |||
| 13 | public const MAJOR_NEGATIVE_INT = 1; |
||
| 14 | |||
| 15 | public const MAJOR_ARRAY = 4; |
||
| 16 | |||
| 17 | public const MAJOR_TAG = 6; |
||
| 18 | |||
| 19 | public const MAJOR_MAP = 5; |
||
| 20 | |||
| 21 | public const MAJOR_BYTE_STRING = 2; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @codeCoverageIgnore |
||
| 25 | */ |
||
| 26 | private function __construct() |
||
| 30 |