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.

AbstractConstantsEnum
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 4
ccs 0
cts 0
cp 0
wmc 0
1
<?php
2
declare(strict_types=1);
3
namespace Thunder\Platenum\Enum;
4
5
/**
6
 * @template TMember
7
 * @template TValue
8
 *
9
 * @author Tomasz Kowalczyk <[email protected]>
10 1
 */
11
abstract class AbstractConstantsEnum implements \JsonSerializable
12
{
13
    /** @use ConstantsEnumTrait<TMember,TValue> */
14
    use ConstantsEnumTrait;
15
}
16