oms-Comments/Models/CommentStatus.php
2024-03-20 07:21:21 +00:00

37 lines
609 B
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.2
*
* @package Modules\Comments\Models
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace Modules\Comments\Models;
use phpOMS\Stdlib\Base\Enum;
/**
* Comment Status enum.
*
* @package Modules\Comments\Models
* @license OMS License 2.0
* @link https://jingga.app
* @since 1.0.0
*/
abstract class CommentStatus extends Enum
{
public const VISIBLE = 1;
public const LOCKED = 2;
public const INVISIBLE = 3;
public const SHADOW = 4;
}