Skip to content

Commit

Permalink
use esrb ratings for age
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioMendolia committed Jan 22, 2024
1 parent a320e01 commit fad7d3d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/Entity/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@
class User implements UserInterface, PasswordAuthenticatedUserInterface
{
public const AGE_CATEGORIES = [
'0-10 ans' => '1',
'11-15 ans' => '3',
'16-18 ans' => '4',
'18 ans et+' => '5',
'E (Everyone)' => '1',
'E10+ (10 and more)' => '2',
'T (13 and more)' => '3',
'M (17 and more)' => '4',
'A (Adults only)' => '5',
];
#[ORM\Id]
#[ORM\GeneratedValue]
Expand Down

0 comments on commit fad7d3d

Please sign in to comment.