Created
November 13, 2017 11:35
-
-
Save zlikavac32/621e1fe738924493cb55b260592b8dbf to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
| class User { | |
| const GENDER_MALE = 0; | |
| const GENDER_FEMALE = 1; | |
| const STATUS_INACTIVE = 0; | |
| const STATUS_ACTIVE = 1; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment