Passed
Push — main ( e005e2...1bd9df )
by N.
03:40
created

Eka::eka()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 2
ccs 2
cts 2
cp 1
crap 1
rs 10
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * Egenskap Eka.
5
 * @author Niklas Dougherty
6
 */
7
8
declare(strict_types=1);
9
10
namespace Tips\Egenskaper;
11
12
/**
13
 * Egenskap Eka.
14
 */
15
trait Eka {
16
	/**
17
	 * Skriv data i block.
18
	 */
19 3
	private function eka(string $sträng): string {
20 3
		return $sträng;
21
	}
22
}
23