1 | <?php declare(strict_types=1); |
||
11 | abstract class Profile extends AbstractResource implements ProfileInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var int |
||
15 | */ |
||
16 | protected $id; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $id_str; |
||
22 | |||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $name; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | protected $screen_name; |
||
32 | |||
33 | /** |
||
34 | * @var string |
||
35 | */ |
||
36 | protected $location; |
||
37 | |||
38 | /** |
||
39 | * @var string |
||
40 | */ |
||
41 | protected $profile_location; |
||
42 | |||
43 | /** |
||
44 | * @var string |
||
45 | */ |
||
46 | protected $description; |
||
47 | |||
48 | /** |
||
49 | * @var array |
||
50 | */ |
||
51 | protected $changedFields = []; |
||
52 | |||
53 | /** |
||
54 | * @return int |
||
55 | */ |
||
56 | 4 | public function id() : int |
|
60 | |||
61 | /** |
||
62 | * @return string |
||
63 | */ |
||
64 | 4 | public function idStr() : string |
|
68 | |||
69 | /** |
||
70 | * @return string |
||
71 | */ |
||
72 | 4 | public function name() : string |
|
76 | |||
77 | /** |
||
78 | * @return string |
||
79 | */ |
||
80 | 4 | public function screenName() : string |
|
84 | |||
85 | /** |
||
86 | * @return string |
||
87 | */ |
||
88 | 4 | public function location() : string |
|
92 | |||
93 | /** |
||
94 | * @return string |
||
95 | */ |
||
96 | 4 | public function profileLocation() : string |
|
100 | |||
101 | /** |
||
102 | * @return string |
||
103 | */ |
||
104 | 4 | public function description() : string |
|
108 | |||
109 | /** |
||
110 | * @param string $name |
||
111 | * @return ProfileInterface |
||
112 | */ |
||
113 | public function withName(string $name): ProfileInterface |
||
120 | |||
121 | public function putProfile() |
||
124 | } |
||
125 |