Completed
Pull Request — master (#46)
by Ekin
06:38
created

Token   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 14
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 14
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\Github;
4
5
class Token implements Credentials
6
{
7
    private string $token;
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 5
    public function __construct(string $token)
10
    {
11 5
        $this->token = $token;
12
    }
13
14 5
    public function getAuthenticationString(): string
15
    {
16 5
        return $this->token;
17
    }
18
}
19