Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Created July 14, 2021 08:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cursosdesarrolloweb/07aa902fe8c7681b7ae7807f324a8a68 to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/07aa902fe8c7681b7ae7807f324a8a68 to your computer and use it in GitHub Desktop.
<?php
namespace App\Enums;
use BenSampo\Enum\Enum;
final class UserType extends Enum
{
const Administrator = 0;
const Moderator = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment