Total Complexity | 4 |
Total Lines | 42 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | final class CIBootstrap |
||
8 | { |
||
9 | /** @var AentItemRegistry */ |
||
10 | private $aent; |
||
11 | |||
12 | /** @var array<string,string> */ |
||
13 | private $metadata; |
||
14 | |||
15 | /** |
||
16 | * @return AentItemRegistry |
||
17 | */ |
||
18 | public function getAent(): AentItemRegistry |
||
19 | { |
||
20 | return $this->aent; |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @param AentItemRegistry $aent |
||
25 | * @return self |
||
26 | */ |
||
27 | public function setAent(AentItemRegistry $aent): self |
||
28 | { |
||
29 | $this->aent = $aent; |
||
30 | return $this; |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * @return array<string,string> |
||
35 | */ |
||
36 | public function getMetadata(): array |
||
39 | } |
||
40 | |||
41 | /** |
||
42 | * @param array<string,string> $metadata |
||
43 | * @return self |
||
44 | */ |
||
45 | public function setMetadata(array $metadata): self |
||
51 |