BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
.
/
app.imagivibe.com
/
vendor
/
noweh
/
twitter-api-v2-php
/
src
📤 Upload
📝 New File
📁 New Folder
Close
Editing: Client.php
<?php namespace Noweh\TwitterApi; class Client { /** * Twitter API settings. * @var array<string> */ protected array $settings = []; /** * Client initialization. * @param array<string> $settings */ public function __construct(array $settings) { $this->settings = $settings; } /** * Upload Media to Twitter * @return Media * @throws \Exception */ public function uploadMedia(): Media { return new Media($this->settings); } /** * Access to Retweet endpoints. * @return Retweet * @throws \Exception */ public function retweet(): Retweet { return new Retweet($this->settings); } /** * Access to Timeline endpoints. * @return Timeline * @throws \Exception */ public function timeline(): Timeline { return new Timeline($this->settings); } /** * Access to Tweet endpoints. * @return Tweet * @throws \Exception */ public function tweet(): Tweet { return new Tweet($this->settings); } /** * Access to Tweet/Bookmarks endpoints. * @return TweetBookmarks * @throws \Exception */ public function tweetBookmarks(): TweetBookmarks { return new TweetBookmarks($this->settings); } /** * Access to Tweet/Likes endpoints. * @return TweetLikes * @throws \Exception */ public function tweetLikes(): TweetLikes { return new TweetLikes($this->settings); } /** * Access to Tweet/Lookup endpoints. * @return TweetLookup * @throws \Exception */ public function tweetLookup(): TweetLookup { return new TweetLookup($this->settings); } /** * Access to Tweet/Quotes endpoints. * @return TweetQuotes * @throws \Exception */ public function tweetQuotes(): TweetQuotes { return new TweetQuotes($this->settings); } /** * Access to Tweet/Replies endpoints. * @return TweetReplies * @throws \Exception */ public function tweetReplies(): TweetReplies { return new TweetReplies($this->settings); } /** * Access To User/Blocks endpoints. * @return UserBlocks * @throws \Exception */ public function userBlocks(): UserBlocks { return new UserBlocks($this->settings); } /** * Access To User/Follows endpoints. * @return UserFollows * @throws \Exception */ public function userFollows(): UserFollows { return new UserFollows($this->settings); } /** * Access To User/Lookup endpoints. * @return UserLookup * @throws \Exception */ public function userLookup(): UserLookup { return new UserLookup($this->settings); } /** * Access To user/me endpoint. * @return UserMeLookup * @throws \Exception */ public function userMeLookup(): UserMeLookup { return new UserMeLookup($this->settings); } /** * Access To User/Mutes endpoints. * @return UserMutes * @throws \Exception */ public function userMutes(): UserMutes { return new UserMutes($this->settings); } }
Save
Cancel