phpOMS/Application/ApplicationStatus.php
2022-11-09 22:55:39 +01:00

35 lines
565 B
PHP
Executable File

<?php
/**
* Karaka
*
* PHP Version 8.1
*
* @package phpOMS\Application
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://karaka.app
*/
declare(strict_types=1);
namespace phpOMS\Application;
use phpOMS\Stdlib\Base\Enum;
/**
* App status enum.
*
* @package phpOMS\Application
* @license OMS License 1.0
* @link https://karaka.app
* @since 1.0.0
*/
abstract class ApplicationStatus extends Enum
{
public const NORMAL = 1;
public const READ_ONLY = 2;
public const DISABLED = 3;
}