1 | <?php declare(strict_types=1); |
||
7 | abstract class EmptyProfile implements ProfileInterface, EmptyResourceInterface |
||
8 | { |
||
9 | /** |
||
10 | * @return int |
||
11 | */ |
||
12 | public function id() : int |
||
16 | |||
17 | /** |
||
18 | * @return string |
||
19 | */ |
||
20 | public function idStr() : string |
||
24 | |||
25 | /** |
||
26 | * @return string |
||
27 | */ |
||
28 | public function name() : string |
||
32 | |||
33 | /** |
||
34 | * @return string |
||
35 | */ |
||
36 | public function screenName() : string |
||
40 | |||
41 | /** |
||
42 | * @return string |
||
43 | */ |
||
44 | public function location() : string |
||
48 | |||
49 | /** |
||
50 | * @return string |
||
51 | */ |
||
52 | public function profileLocation() : string |
||
56 | |||
57 | /** |
||
58 | * @return string |
||
59 | */ |
||
60 | public function description() : string |
||
64 | |||
65 | |||
66 | /** |
||
67 | * @param string $name |
||
68 | * @return ProfileInterface |
||
69 | */ |
||
70 | public function withName(string $name): ProfileInterface |
||
74 | } |
||
75 |