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