| 1 | <?php declare(strict_types=1); |
||
| 7 | class Update extends BaseRequest |
||
| 8 | { |
||
| 9 | const METHOD = 'POST'; |
||
| 10 | const ENDPOINT = '/statuses/update.json'; |
||
| 11 | |||
| 12 | 12 | public function __construct(string $message) |
|
| 18 | |||
| 19 | 2 | public function replyTo(int $id): Update |
|
| 25 | |||
| 26 | 2 | public function isSensitive(): Update |
|
| 32 | |||
| 33 | 2 | public function setLatitude(float $latitude): Update |
|
| 39 | |||
| 40 | 2 | public function setLongitude(float $longitude): Update |
|
| 46 | |||
| 47 | 2 | public function displayCoordinates(): Update |
|
| 53 | |||
| 54 | 2 | public function trimUser(): Update |
|
| 60 | |||
| 61 | public function setMediaIds(string ...$ids): Update |
||
| 67 | } |
||
| 68 |