| 1 | <?php declare(strict_types=1); |
||
| 10 | class Update extends BaseRequest |
||
| 11 | { |
||
| 12 | const METHOD = 'POST'; |
||
| 13 | const ENDPOINT = '/statuses/update.json'; |
||
| 14 | |||
| 15 | 12 | public function __construct(string $message) |
|
| 21 | |||
| 22 | 2 | public function replyTo(int $id): Update |
|
| 28 | |||
| 29 | 2 | public function isSensitive(): Update |
|
| 35 | |||
| 36 | 2 | public function setLatitude(float $latitude): Update |
|
| 42 | |||
| 43 | 2 | public function setLongitude(float $longitude): Update |
|
| 49 | |||
| 50 | 2 | public function displayCoordinates(): Update |
|
| 56 | |||
| 57 | 2 | public function trimUser(): Update |
|
| 63 | |||
| 64 | public function setMediaIds(string ...$ids): Update |
||
| 70 | } |
||
| 71 |