Ratings
- G - All Ages
- PG - Children
- PG-13 - Teens 13 or older
- R - 17+ (violence & profanity)
- R+ - Mild Nudity
- Rx - Hentai
",
* type="string",
* enum={"g","pg","pg13","r17","r","rx"}
* )
*/
final class AnimeRatingEnum extends Enum
{
protected static function labels(): array
{
return [
"g" => "G - All Ages",
"pg" => "PG - Children",
"pg13" => "PG-13 - Teens 13 or older",
"r17" => "R - 17+ (violence & profanity)",
"r" => "R+ - Mild Nudity",
"rx" => "Rx - Hentai"
];
}
}