Tabellhuvud::tabellhuvud()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 19

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 19
nc 1
nop 0
dl 0
loc 2
rs 9.6333
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * Klass Tabellhuvud.
5
 * @author Niklas Dougherty
6
 */
7
8
declare(strict_types=1);
9
10
namespace Tips\Klasser\Investera;
11
12
/**
13
 * Klass Tabellhuvud.
14
 */
15
final class Tabellhuvud {
16
	/**
17
	 * Definiera uppmärkning av tabellhuvud.
18
	 */
19
	public function tabellhuvud(): string {
20
		return <<< EOT
21
						<table id="investeringstabell">
22
							<tr class="match">
23
								<th>#</th>
24
								<th>Tid</th>
25
								<th>Omgång</th>
26
								<th>Typ</th>
27
								<th>Sekvens</th>
28
								<th>Valda</th>
29
								<th>Genererade</th>
30
								<th>Andel %</th>
31
								<th>Vinst</th>
32
								<th>13r</th>
33
								<th>12r</th>
34
								<th>11r</th>
35
								<th>10r</th>
36
							</tr>
37
38
EOT;
39
	}
40
}
41