1 | <?php declare(strict_types=1); |
||
10 | class UserTimeline extends BaseRequest |
||
11 | { |
||
12 | const METHOD = 'GET'; |
||
13 | const ENDPOINT = '/statuses/user_timeline.json'; |
||
14 | |||
15 | 18 | public function __construct() |
|
19 | |||
20 | 2 | public function userId(int $id): UserTimeline |
|
26 | |||
27 | 2 | public function screenName(string $screenName): UserTimeline |
|
33 | |||
34 | 2 | public function amount(int $amount): UserTimeline |
|
40 | |||
41 | 2 | public function minimumId(int $id): UserTimeline |
|
47 | |||
48 | 2 | public function maximumId(int $id): UserTimeline |
|
54 | |||
55 | 2 | public function trimUser(): UserTimeline |
|
61 | |||
62 | 2 | public function excludeReplies(): UserTimeline |
|
68 | |||
69 | 2 | public function includeContributorDetails(): UserTimeline |
|
75 | |||
76 | 2 | public function excludeRetweets(): UserTimeline |
|
82 | } |
||
83 |