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

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 1
dl 0
loc 5
ccs 0
cts 0
cp 0
crap 2
rs 10
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