| 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) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param GivenName $other |
||
| 28 | * @return bool |
||
| 29 | */ |
||
| 30 | public function equals(GivenName $other) |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return string |
||
| 37 | */ |
||
| 38 | public function getGivenName() |
||
| 42 | |||
| 43 | public function __toString() |
||
| 47 | } |
||
| 48 |