Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
7 | 1 | public static function headers(): array |
|
8 | { |
||
9 | return [ |
||
10 | 1 | 'X-Stormwind-Guard' => 'King\'s honor friend', |
|
11 | 'X-Tyrande-Whisperwind' => 'Anu\'dora!', |
||
12 | 'X-Draenei' => 'The Naaru have not forgotten us.', |
||
13 | 'X-Gnome' => 'My, you\'re a tall one!', |
||
14 | 'X-Night-Elf' => 'Elune be with you.', |
||
15 | 'X-Worgen' => 'What\'s your story?', |
||
16 | 'X-Dwarf' => 'For Khaz Modan!', |
||
17 | 'X-Human' => 'For the Alliance!', |
||
18 | 'X-Varian-Wrynn' => 'Stormwind honors your service to the Alliance', |
||
19 | 'X-Arthas-Menethil' => 'For Lordaeron!', |
||
20 | 'X-Magni-Bronzebeard' => 'Feel the fury of the mountain!', |
||
21 | ]; |
||
22 | } |
||
23 | } |
||
24 |