AuthCertResponse::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
rs 10
cc 1
nc 1
nop 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Lamoda\IsmpClient\V3\Dto;
6
7
final class AuthCertResponse
8
{
9
    /**
10
     * @var string
11
     */
12
    private $token;
13
14
    /**
15
     * * @param string $token
16
     */
17
    public function __construct(string $token)
18
    {
19
        $this->token = $token;
20
    }
21
22
    public function getToken(): string
23
    {
24
        return $this->token;
25
    }
26
}
27