BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
vendor
/
noweh
/
twitter-api-v2-php
/
src
📤 Upload
📝 New File
📁 New Folder
Close
Editing: UserMutes.php
<?php namespace Noweh\TwitterApi; /** * Class User/Mutes Controller * @see <a href="https://developer.twitter.com/en/docs/twitter-api/users/mutes/introduction">Mutes</a> * @author Martin Zeitler */ class UserMutes extends AbstractController { /** * @param array<int, string> $settings * @throws \Exception */ public function __construct(array $settings) { parent::__construct($settings); $this->setAuthMode(1); } /** * Look up muted users. * @return UserMutes */ public function lookup(): UserMutes { $this->setEndpoint('users/'.$this->account_id.'/muting'); $this->setHttpRequestMethod('GET'); return $this; } /** * Mute user by username or ID. * @return UserMutes */ public function mute(): UserMutes { $this->setEndpoint('users/'.$this->account_id.'/muting'); $this->setHttpRequestMethod('POST'); return $this; } /** * Mute user by username or ID. * @param int $user_id * @return UserMutes */ public function unmute(int $user_id): UserMutes { $this->setEndpoint('users/'.$this->account_id.'/muting/'.$user_id); $this->setHttpRequestMethod('DELETE'); return $this; } /** * Retrieve Endpoint value and rebuilt it with the expected parameters * @return string the URL for the request. * @throws \Exception */ protected function constructEndpoint(): string { $endpoint = parent::constructEndpoint(); if (!is_null($this->next_page_token)) { $this->query_string['pagination_token'] = $this->next_page_token; $endpoint .= '?' . http_build_query($this->query_string); } return $endpoint; } }
Save
Cancel