Created
December 18, 2018 16:04
-
-
Save BenSampo/84ffa24efe2b1bc719aba8d1e666b7c3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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