mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
36 lines
689 B
PHP
36 lines
689 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;
|
|
}
|