| 1 | <?php |
||
| 20 | trait StringCodeDepartementTrait { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Code département. |
||
| 24 | * |
||
| 25 | * @var string|null |
||
| 26 | */ |
||
| 27 | private $codeDepartement; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Get the code département. |
||
| 31 | * |
||
| 32 | * @return string|null Returns the code département. |
||
| 33 | */ |
||
| 34 | 20 | public function getCodeDepartement(): ?string { |
|
| 37 | |||
| 38 | /** |
||
| 39 | * Set the code département. |
||
| 40 | * |
||
| 41 | * @param string|null $codeDepartement The code département. |
||
| 42 | * @return self Returns tis instance. |
||
| 43 | */ |
||
| 44 | 20 | public function setCodeDepartement(?string $codeDepartement): self { |
|
| 48 | } |