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