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

Returns an array of numeric user ids the authenticating user is blocking.
public blocksIds ( string[optional] $cursor = null, bool[optional] $stringifyIds = null ) : array
$cursor string[optional]
$stringifyIds bool[optional]
Результат array
Пример #1
0
 /**
  * Tests Twitter->blocksIds
  */
 public function testBlocksIds()
 {
     $response = $this->twitter->blocksIds();
     $this->assertArrayHasKey('ids', $response);
     $this->assertArrayHasKey('next_cursor', $response);
     $this->assertArrayHasKey('previous_cursor', $response);
 }