* @copyright (c) 2013, Michael Roterman * @version 0.0.1 */ namespace Tmdb\Api; /** * Class Timezones * @package Tmdb\Api * @see http://docs.themoviedb.apiary.io/#timezones */ class Timezones extends AbstractApi { /** * Get the list of supported timezones for the API methods that support them. * * @return mixed */ public function getTimezones() { return $this->get('timezones/list'); } }