Total Complexity | 2 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | trait FormChoiceTrait |
||
15 | { |
||
16 | /** |
||
17 | * The formChoice. |
||
18 | * |
||
19 | * @var \SimpleSAML\XMLSchema\Type\FormChoiceValue|null |
||
20 | */ |
||
21 | protected ?FormChoiceValue $formChoice = null; |
||
22 | |||
23 | |||
24 | /** |
||
25 | * Collect the value of the formChoice-property |
||
26 | * |
||
27 | * @return \SimpleSAML\XMLSchema\Type\FormChoiceValue|null |
||
28 | */ |
||
29 | public function getFormChoice(): ?FormChoiceValue |
||
32 | } |
||
33 | |||
34 | |||
35 | /** |
||
36 | * Set the value of the formChoice-property |
||
37 | * |
||
38 | * @param \SimpleSAML\XMLSchema\Type\FormChoiceValue|null $formChoice |
||
39 | */ |
||
40 | protected function setFormChoice(?FormChoiceValue $formChoice): void |
||
45 |