Skip to content

Instantly share code, notes, and snippets.

@BenSampo
Created December 18, 2018 16:04
Show Gist options
  • Save BenSampo/84ffa24efe2b1bc719aba8d1e666b7c3 to your computer and use it in GitHub Desktop.
Save BenSampo/84ffa24efe2b1bc719aba8d1e666b7c3 to your computer and use it in GitHub Desktop.
<?php
namespace App\Enums;
use BenSampo\Enum\Enum;
final class Days extends Enum
{
const Monday = 1;
const Tuesday = 2;
const Wednesday = 3;
const Thursday = 4;
const Friday = 5;
const Saturday = 6;
const Sunday = 7;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment