Tabellhuvud   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 20
dl 0
loc 6
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A tabellhuvud() 0 2 1
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