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.

Horde::headers()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 13

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 13
ccs 2
cts 2
cp 1
rs 9.8333
c 0
b 0
f 0
cc 1
nc 1
nop 0
crap 1
1
<?php declare(strict_types=1);
2
3
namespace WyriMaps\XHeaders;
4
5
final class Horde
6
{
7 1
    public static function headers(): array
8
    {
9
        return [
10 1
            'X-Horde' => 'For the Horde!',
11
            'X-Orc' => 'Lok-tar ogar!',
12
            'X-Alliance' => 'Puny Alliance',
13
            'X-Thrall' => 'For Doomhammer!',
14
            'X-Troll' => 'Taz\'dingooo!',
15
            'X-Forsaken' => 'Victory for Sylvanas!',
16
            'X-Tauren' => 'May the eternal sun shine upon thee',
17
            'X-Shaman' => 'Storm, earth, and fire, heed my call!',
18
        ];
19
    }
20
}
21