1 | <?php |
||
20 | trait IntegerCivilityTrait { |
||
21 | |||
22 | /** |
||
23 | * Civility. |
||
24 | * |
||
25 | * @var int|null |
||
26 | */ |
||
27 | protected $civility; |
||
28 | |||
29 | /** |
||
30 | * Get the civility. |
||
31 | * |
||
32 | * @return int|null Returns the civility. |
||
33 | */ |
||
34 | public function getCivility(): ?int { |
||
37 | |||
38 | /** |
||
39 | * Set the civility. |
||
40 | * |
||
41 | * @param int|null $civility The civility. |
||
42 | * @return self Returns this instance. |
||
43 | */ |
||
44 | public function setCivility(?int $civility): self { |
||
48 | } |
||
49 |