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