| 1 | <?php |
||
| 20 | trait StringNomTrait { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Nom. |
||
| 24 | * |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | private $nom; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Get the nom. |
||
| 31 | * |
||
| 32 | * @return string Returns the nom. |
||
| 33 | */ |
||
| 34 | public function getNom() { |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Set the nom. |
||
| 40 | * |
||
| 41 | * @param string $nom The nom. |
||
| 42 | */ |
||
| 43 | public function setNom($nom) { |
||
| 47 | } |