HummingBirdAnimeClient/src/Hummingbird/Enum/AnimeShowType.php

32 lines
761 B
PHP
Raw Normal View History

2015-09-25 13:41:12 -04:00
<?php
2015-11-16 11:40:01 -05:00
/**
* Hummingbird Anime Client
*
* An API client for Hummingbird to manage anime and manga watch lists
*
2016-08-30 10:01:18 -04:00
* PHP version 5.6
*
2015-11-16 11:40:01 -05:00
* @package HummingbirdAnimeClient
2016-08-30 10:01:18 -04:00
* @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2015 - 2016 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.1
2015-11-16 11:40:01 -05:00
* @link https://github.com/timw4mail/HummingBirdAnimeClient
*/
2015-09-25 13:41:12 -04:00
namespace Aviat\AnimeClient\Hummingbird\Enum;
2015-09-25 13:41:12 -04:00
use Aviat\Ion\Enum as BaseEnum;
2015-09-25 13:41:12 -04:00
/**
* Type of Anime
*/
class AnimeShowType extends BaseEnum {
2015-09-25 13:41:12 -04:00
const TV = 'TV';
const MOVIE = 'Movie';
const OVA = 'OVA';
const ONA = 'ONA';
const SPECIAL = 'Special';
const MUSIC = 'Music';
}
// End of AnimeShowType.php