Skip to content

Instantly share code, notes, and snippets.

@BenSampo
Created December 18, 2018 16:02
Show Gist options
  • Save BenSampo/46e620affe0e97e489e35e8bce914920 to your computer and use it in GitHub Desktop.
Save BenSampo/46e620affe0e97e489e35e8bce914920 to your computer and use it in GitHub Desktop.
<?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