14 lines
235 B
PHP
14 lines
235 B
PHP
<?php
|
|
|
|
namespace Aviat\AnimeClient\Enum\Hummingbird;
|
|
|
|
use Aviat\Ion\Enum;
|
|
|
|
class AnimeAgeRating extends Enum {
|
|
const G = 'G';
|
|
const PG = 'PG';
|
|
const PG13 = 'PG13';
|
|
const R = 'R17+';
|
|
const X = 'R18+';
|
|
}
|
|
// End of AnimeAgeRating.php
|