phpOMS/DataStorage/Cache/CacheStatus.php

37 lines
694 B
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.1
*
* @category TBD
* @package TBD
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link http://orange-management.com
*/
declare(strict_types = 1);
namespace phpOMS\DataStorage\Cache;
use phpOMS\Stdlib\Base\Enum;
/**
* Cache status enum.
*
* Possible caching status
*
* @category Framework
* @package phpOMS\DataStorage\Cache
* @license OMS License 1.0
* @link http://orange-management.com
* @since 1.0.0
*/
abstract class CacheStatus extends Enum
{
/* public */ const ACTIVE = 0;
/* public */ const INACTIVE = 1;
/* public */ const ERROR = 2;
}