Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save zlikavac32/621e1fe738924493cb55b260592b8dbf to your computer and use it in GitHub Desktop.
<?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