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

Updates the authenticating user's settings.
public accountSettingsUpdate ( string[optional] $trendLocationWoeId = null, bool[optional] $sleepTimeEnabled = null, string[optional] $startSleepTime = null, string[optional] $endSleepTime = null, string[optional] $timeZone = null, string[optional] $lang = null ) : array
$trendLocationWoeId string[optional]
$sleepTimeEnabled bool[optional]
$startSleepTime string[optional]
$endSleepTime string[optional]
$timeZone string[optional]
$lang string[optional]
Результат array
Пример #1
0
 /**
  * Tests Twitter->accountSettingsUpdate
  */
 public function testAccountSettingsUpdate()
 {
     $response = $this->twitter->accountSettingsUpdate(null, null, null, null, null, 'en');
     $this->assertArrayHasKey('protected', $response);
     $this->assertArrayHasKey('screen_name', $response);
     $this->assertArrayHasKey('discoverable_by_email', $response);
     $this->assertArrayHasKey('time_zone', $response);
     $this->assertArrayHasKey('tzinfo_name', $response['time_zone']);
     $this->assertArrayHasKey('name', $response['time_zone']);
     $this->assertArrayHasKey('utc_offset', $response['time_zone']);
     $this->assertArrayHasKey('use_cookie_personalization', $response);
     $this->assertArrayHasKey('sleep_time', $response);
     $this->assertArrayHasKey('enabled', $response['sleep_time']);
     $this->assertArrayHasKey('start_time', $response['sleep_time']);
     $this->assertArrayHasKey('end_time', $response['sleep_time']);
     $this->assertArrayHasKey('geo_enabled', $response);
     $this->assertArrayHasKey('always_use_https', $response);
     $this->assertArrayHasKey('language', $response);
 }