Total Complexity | 2 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | class GenderKeys |
||
27 | { |
||
28 | |||
29 | /** |
||
30 | * Key for 'Male'. |
||
31 | * |
||
32 | * @var integer |
||
33 | */ |
||
34 | const GENDER_MALE = 1; |
||
35 | |||
36 | /** |
||
37 | * Key for 'Female'. |
||
38 | * |
||
39 | * @var integer |
||
40 | */ |
||
41 | const GENDER_FEMALE = 2; |
||
42 | |||
43 | /** |
||
44 | * Key for 'Not Specified'. |
||
45 | * |
||
46 | * @var integer |
||
47 | */ |
||
48 | const GENDER_NOT_SPECIFIED = 3; |
||
49 | |||
50 | /** |
||
51 | * This is a utility class, so protect it against direct |
||
52 | * instantiation. |
||
53 | */ |
||
54 | private function __construct() |
||
55 | { |
||
56 | } |
||
57 | |||
58 | /** |
||
59 | * This is a utility class, so protect it against cloning. |
||
60 | * |
||
61 | * @return void |
||
62 | */ |
||
63 | private function __clone() |
||
65 | } |
||
66 | } |
||
67 |