Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | trait CodeTrait |
||
12 | { |
||
13 | |||
14 | /** @var string|null $code */ |
||
15 | protected $code; |
||
16 | |||
17 | /** |
||
18 | * @return string|null |
||
19 | */ |
||
20 | public function getCode(): ?string |
||
21 | { |
||
22 | return $this->code; |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @param string|null $code |
||
27 | */ |
||
28 | public function setCode(?string $code): void |
||
31 | } |
||
32 | } |
||
33 |