| 1 | <?php declare(strict_types=1); |
||
| 5 | class Author |
||
| 6 | { |
||
| 7 | private $name; |
||
| 8 | |||
| 9 | private $emailAddress; |
||
| 10 | |||
| 11 | 4 | public function __construct(string $name, string $emailAddress) |
|
| 20 | |||
| 21 | 1 | public function getName(): string |
|
| 25 | |||
| 26 | 1 | public function getEmailAddress(): string |
|
| 30 | |||
| 31 | 1 | public function getFormatted(): string |
|
| 35 | } |
||
| 36 |