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::init()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 25
Code Lines 21

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 21
CRAP Score 2

Importance

Changes 0
Metric Value
cc 2
eloc 21
nc 2
nop 0
dl 0
loc 25
ccs 21
cts 21
cp 1
crap 2
rs 9.584
c 0
b 0
f 0
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