phpOMS/DataStorage/Cache/CacheStatus.php
2020-08-30 20:13:11 +02:00

39 lines
675 B
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.4
*
* @package phpOMS\DataStorage\Cache
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
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 https://orange-management.org
* @since 1.0.0
*/
abstract class CacheStatus extends Enum
{
public const OK = 0;
public const FAILURE = 1;
public const READONLY = 2;
public const CLOSED = 3;
}