friendshipsOutgoing() public method

Returns a collection of numeric IDs for every protected user for whom the authenticating user has a pending follow request.
public friendshipsOutgoing ( string[optional] $cursor = null, bool[optional] $stringifyIds = true ) : array
$cursor string[optional]
$stringifyIds bool[optional]
return array
 /**
  * Tests Twitter->friendshipsOutgoing
  */
 public function testFriendshipsOutgoing()
 {
     $response = $this->twitter->friendshipsOutgoing();
     $this->assertArrayHasKey('ids', $response);
     $this->assertArrayHasKey('next_cursor', $response);
     $this->assertArrayHasKey('previous_cursor', $response);
 }