Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | abstract class Element implements ElementInterface |
||
21 | { |
||
22 | /** @var string */ |
||
23 | protected $id; |
||
24 | |||
25 | /** |
||
26 | * Get id. |
||
27 | * |
||
28 | * @return string |
||
29 | */ |
||
30 | public function getId(): ?string |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * Set id. |
||
37 | * |
||
38 | * @param string $id |
||
39 | */ |
||
40 | public function setId(string $id): void |
||
45 |