phpOMS/DataStorage/Cache/CacheStatus.php

36 lines
705 B
PHP

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