Created
December 18, 2018 16:02
-
-
Save BenSampo/46e620affe0e97e489e35e8bce914920 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 Months extends Enum | |
{ | |
const January = 1; | |
const February = 2; | |
const March = 3; | |
const April = 4; | |
const May = 5; | |
const June = 6; | |
const July = 7; | |
const August = 8; | |
const September = 9; | |
const October = 10; | |
const November = 11; | |
const December = 12; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment