samizdam/PhamilyFramework

View on GitHub
src/GenderAwareInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Phamily\Framework;

/**
 * TODO move to samizdam/vo.
 * 
 * @author samizdam
 */
interface GenderAwareInterface
{
    const GENDER_MALE = 'male';

    const GENDER_FEMALE = 'female';

    const GENDER_UNDEFINED = null;
}