Test Setup Failed
Pull Request — master (#46)
by Ekin
06:26
created

Type   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 0
dl 0
loc 13
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0
1
<?php declare(strict_types=1);
2
3
namespace ekinhbayar\GitAmp\Presentation;
4
5
class Type
6
{
7
    private int $type;
0 ignored issues
show
Bug introduced by
This code did not parse for me. Apparently, there is an error somewhere around this line:

Syntax error, unexpected T_STRING, expecting T_FUNCTION or T_CONST
Loading history...
8
9 23
    public function __construct(int $type)
10
    {
11 23
        $this->type = $type;
12
    }
13
14 21
    public function getValue(): int
15
    {
16 21
        return $this->type;
17
    }
18
}
19