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

Un-blocks the user specified in the ID parameter for the authenticating user. Returns the un-blocked user in the requested format when successful. If relationships existed before the block was instated, they will not be restored.
public blocksDestroy ( string[optional] $userId = null, string[optional] $screenName = null, bool[optional] $includeEntities = null, bool[optional] $skipStatus = null ) : array
$userId string[optional]
$screenName string[optional]
$includeEntities bool[optional]
$skipStatus bool[optional]
Результат array
Пример #1
0
 /**
  * Tests Twitter->blocksCreate
  */
 public function testBlocksDestroy()
 {
     $response = $this->twitter->blocksCreate(null, 'netlash');
     $response = $this->twitter->blocksDestroy(null, 'netlash');
     $this->isUser($response);
 }