statusesDestroy() публичный Метод

Destroys the status specified by the required ID parameter. The authenticating user must be the author of the specified status. Returns the destroyed status if successful.
public statusesDestroy ( string $id, bool[optional] $trimUser = null ) : array
$id string The numerical ID of the desired status.
$trimUser bool[optional]
Результат array
Пример #1
0
 /**
  * Tests Twitter->statusesRetweet()
  */
 public function testStatusesRetweet()
 {
     $response = $this->twitter->statusesRetweet('241259202004267009');
     $this->isTweet($response);
     $this->twitter->statusesDestroy($response['id']);
 }