Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
8 | final class Alias |
||
9 | { |
||
10 | /** |
||
11 | * @var string|null |
||
12 | * @SerializedName("Id") |
||
13 | * @Type("string") |
||
14 | */ |
||
15 | private $id; |
||
16 | |||
17 | /** |
||
18 | * @var int|null |
||
19 | * @SerializedName("Lifetime") |
||
20 | * @Type("integer") |
||
21 | */ |
||
22 | private $lifetime; |
||
23 | |||
24 | public function getId(): ?string |
||
25 | { |
||
26 | return $this->id; |
||
27 | } |
||
28 | |||
29 | public function getLifetime(): ?int |
||
32 | } |
||
33 | } |
||
34 |