1 | <?php |
||
13 | trait NamePart { |
||
14 | |||
15 | /** @var string */ |
||
16 | private $name; |
||
17 | |||
18 | /** |
||
19 | * Sets the name |
||
20 | * |
||
21 | * @param string $name |
||
22 | * @return $this |
||
23 | */ |
||
24 | 81 | public function setName(string $name = null) { |
|
29 | |||
30 | /** |
||
31 | * Returns the name |
||
32 | * |
||
33 | * @return string |
||
34 | */ |
||
35 | 70 | public function getName(): ?string { |
|
38 | } |
||
39 |