1 | <?php |
||
7 | final class Surname |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | private $surname; |
||
13 | |||
14 | /** |
||
15 | * @param string $name |
||
16 | */ |
||
17 | public function __construct($name) |
||
23 | |||
24 | /** |
||
25 | * @param Surname $other |
||
26 | * @return bool |
||
27 | */ |
||
28 | public function equals(Surname $other) |
||
32 | |||
33 | /** |
||
34 | * @return string |
||
35 | */ |
||
36 | public function getSurname() |
||
40 | |||
41 | public function __toString() |
||
45 | } |
||
46 |