Total Complexity | 3 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
25 | trait Acknowledgement |
||
26 | { |
||
27 | |||
28 | /** |
||
29 | * The acknowledgement URL. |
||
30 | * |
||
31 | * @var string |
||
32 | */ |
||
33 | protected $acknowledgement = null; |
||
34 | |||
35 | /** |
||
36 | * Set the acknowledgement URL. |
||
37 | * |
||
38 | * @param string $acknowledgement |
||
39 | * |
||
40 | * @return SecurityTxt |
||
41 | */ |
||
42 | 3 | public function setAcknowledgement(string $acknowledgement): SecurityTxt |
|
51 | } |
||
52 | |||
53 | /** |
||
54 | * Get the acknowledgement URL. |
||
55 | * |
||
56 | * @return string |
||
57 | */ |
||
58 | 1 | public function getAcknowledgement(): string |
|
63 |