Passed
Push — master ( 3a2451...e6e9f9 )
by Thomas
08:19 queued 05:35
created

Cbor   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 9
c 0
b 0
f 0
dl 0
loc 23
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
1
<?php
2
3
namespace MadWizard\WebAuthn\Format;
4
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()
27
    {
28
    }
29
}
30