usersShow() public method

The author's most recent Tweet will be returned inline when possible.
public usersShow ( string[optional] $userId = null, string[optional] $screenName = null, bool[optional] $includeEntities = null ) : array
$userId string[optional]
$screenName string[optional]
$includeEntities bool[optional]
return array
Exemplo n.º 1
0
 /**
  * Tests Twitter->usersShow
  */
 public function testUsersShow()
 {
     $response = $this->twitter->usersShow(null, 'tijsverkoyen');
     $this->isUser($response);
 }