| 1 | <?php |
||
| 20 | trait StringFirstNameTrait { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * First name. |
||
| 24 | * |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | protected $firstName; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Get the first name. |
||
| 31 | * |
||
| 32 | * @return string Returns the first name. |
||
| 33 | */ |
||
| 34 | public function getFirstName() { |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Set the first name. |
||
| 40 | * |
||
| 41 | * @param string $firstName The first name. |
||
| 42 | */ |
||
| 43 | public function setFirstName($firstName) { |
||
| 47 | } |
||
| 48 |