for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* TechDivision\Import\Utils\CacheKeys
*
* NOTICE OF LICENSE
* This source file is subject to the Open Software License (OSL 3.0)
* that is available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* PHP version 5
* @author Tim Wagner <[email protected]>
* @copyright 2016 TechDivision GmbH <[email protected]>
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @link https://github.com/techdivision/import
* @link http://www.techdivision.com
*/
namespace TechDivision\Import\Utils;
* A utility class that contains the cache keys.
class CacheKeys
{
* 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()
* The cache key for import status.
* @var string
const STATUS = 'status';
* The cache key for EAV attribute option values.
const EAV_ATTRIBUTE_OPTION_VALUE = 'eav_attribute_option_value';