for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* TechDivision\Import\Customer\Address\Utils\GenderKeys
*
* PHP version 7
* @author Tim Wagner <[email protected]>
* @copyright 2018 TechDivision GmbH <[email protected]>
* @license https://opensource.org/licenses/MIT
* @link https://github.com/techdivision/import-customer-address
* @link http://www.techdivision.com
*/
namespace TechDivision\Import\Customer\Address\Utils;
* Utility class containing the available gender keys.
class GenderKeys
{
* Key for 'Male'.
* @var integer
const GENDER_MALE = 1;
* Key for 'Female'.
const GENDER_FEMALE = 2;
* Key for 'Not Specified'.
const GENDER_NOT_SPECIFIED = 3;
* This is a utility class, so protect it against direct
* instantiation.
private function __construct()
}
* This is a utility class, so protect it against cloning.
* @return void
private function __clone()