1<?php
2/**
3 * This file is part of the Tmdb PHP API created by Michael Roterman.
4 *
5 * For the full copyright and license information, please view the LICENSE
6 * file that was distributed with this source code.
7 *
8 * @package Tmdb
9 * @author Michael Roterman <michael@wtfz.net>
10 * @copyright (c) 2013, Michael Roterman
11 * @version 0.0.1
12 */
13namespace Tmdb\Model\Tv;
14
15use Tmdb\Model\Movie\AlternativeTitle as BaseAlternativeTitle;
16
17/**
18 * Class AlternativeTitle
19 * @package Tmdb\Model\Tv
20 */
21class AlternativeTitle extends BaseAlternativeTitle
22{
23}
24