GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Symbols   A
last analyzed

Complexity

Total Complexity 5

Size/Duplication

Total Lines 48
Duplicated Lines 0 %

Test Coverage

Coverage 92.31%

Importance

Changes 0
Metric Value
eloc 29
dl 0
loc 48
ccs 24
cts 26
cp 0.9231
rs 10
c 0
b 0
f 0
wmc 5

4 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
A symbol() 0 5 1
A class() 0 5 1
A init() 0 25 2
1
<?php
2
declare(strict_types = 1);
3
4
namespace Innmind\AMQP\Transport\Frame\Value;
5
6
use Innmind\Immutable\{
7
    Map,
8
    Pair,
9
};
10
11
final class Symbols
12
{
13
    private static $symbols;
14
    private static $classes;
15
16
    private function __construct()
17
    {
18
    }
19
20 158
    public static function symbol(string $class): string
21
    {
22 158
        self::init();
23
24 158
        return self::$classes->get($class);
25
    }
26
27
    public static function class(string $symbol): string
28
    {
29
        self::init();
30
31
        return self::$symbols->get($symbol);
32
    }
33
34 158
    private static function init(): void
35
    {
36 158
        if (!\is_null(self::$symbols)) {
37 158
            return;
38
        }
39
40 2
        self::$symbols = Map::of('string', 'string')
41 2
            ('b', SignedOctet::class)
42 2
            ('B', UnsignedOctet::class)
43 2
            ('U', SignedShortInteger::class)
44 2
            ('u', UnsignedShortInteger::class)
45 2
            ('I', SignedLongInteger::class)
46 2
            ('i', UnsignedLongInteger::class)
47 2
            ('L', SignedLongLongInteger::class)
48 2
            ('l', UnsignedLongLongInteger::class)
49 2
            ('D', Decimal::class)
50 2
            ('T', Timestamp::class)
51 2
            ('V', VoidValue::class)
52 2
            ('t', Bits::class)
53 2
            ('s', ShortString::class)
54 2
            ('S', LongString::class)
55 2
            ('A', Sequence::class)
56 2
            ('F', Table::class);
57
        self::$classes = self::$symbols->map(static function(string $symbol, string $class): Pair {
58 2
            return new Pair($class, $symbol);
59 2
        });
60 2
    }
61
}
62