| 1 | <?php declare(strict_types=1); |
||
| 8 | abstract class EmptyUser implements UserInterface, EmptyResourceInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @return string |
||
| 12 | */ |
||
| 13 | 2 | public function name(): string |
|
| 17 | |||
| 18 | /** |
||
| 19 | * @return string |
||
| 20 | */ |
||
| 21 | 2 | public function email(): string |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @return DateTimeInterface |
||
| 28 | */ |
||
| 29 | 2 | public function date(): DateTimeInterface |
|
| 33 | } |
||
| 34 |