phpOMS/DataStorage/Cache/CacheStatus.php
Dennis Eichhorn 6b25cd2df7 Implement file cache
also updating interfaces and pool to match the database pool. This is
now designed based on a real use case instead of some untested idea.
2016-10-29 20:47:26 +02:00

39 lines
834 B
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.0
*
* @category TBD
* @package TBD
* @author OMS Development Team <dev@oms.com>
* @author Dennis Eichhorn <d.eichhorn@oms.com>
* @copyright 2013 Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link http://orange-management.com
*/
namespace phpOMS\DataStorage\Cache;
use phpOMS\Datatypes\Enum;
/**
* Cache status enum.
*
* Possible caching status
*
* @category Framework
* @package phpOMS\DataStorage\Cache
* @author OMS Development Team <dev@oms.com>
* @author Dennis Eichhorn <d.eichhorn@oms.com>
* @license OMS License 1.0
* @link http://orange-management.com
* @since 1.0.0
*/
abstract class CacheStatus extends Enum
{
const ACTIVE = 0;
const INACTIVE = 1;
const ERROR = 2;
}