Skip to content

Instantly share code, notes, and snippets.

@zlikavac32
Created November 13, 2017 11:39
Show Gist options
  • Select an option

  • Save zlikavac32/de9d8fa10ef4bc5897c413c6e5d36c94 to your computer and use it in GitHub Desktop.

Select an option

Save zlikavac32/de9d8fa10ef4bc5897c413c6e5d36c94 to your computer and use it in GitHub Desktop.
<?php
final class YesNo extends \Eloquent\Enumeration\AbstractEnumeration {
const NO = 0;
const YES = 1;
}
var_dump(YesNo::YES()->key()); // YES
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment