Total Complexity | 2 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | trait PolicyURIsTrait |
||
15 | { |
||
16 | /** |
||
17 | * The PolicyURIs. |
||
18 | * |
||
19 | * @var string[] |
||
20 | */ |
||
21 | protected array $PolicyURIs; |
||
22 | |||
23 | |||
24 | /** |
||
25 | * Collect the value of the PolicyURIs-property |
||
26 | * |
||
27 | * @return array |
||
28 | */ |
||
29 | public function getPolicyURIs(): array |
||
30 | { |
||
31 | return $this->PolicyURIs; |
||
32 | } |
||
33 | |||
34 | |||
35 | /** |
||
36 | * Set the value of the PolicyURIs-property |
||
37 | * |
||
38 | * @param array $PolicyURIs |
||
39 | */ |
||
40 | protected function setPolicyURIs(array $PolicyURIs): void |
||
44 | } |
||
45 | } |
||
46 |