oms-Comments/Models/CommentListStatus.php
2022-02-19 13:57:38 +01:00

35 lines
581 B
PHP
Executable File

<?php
/**
* Karaka
*
* PHP Version 8.0
*
* @package Modules\Comments\Models
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://karaka.app
*/
declare(strict_types=1);
namespace Modules\Comments\Models;
use phpOMS\Stdlib\Base\Enum;
/**
* Comment Status enum.
*
* @package Modules\Comments\Models
* @license OMS License 1.0
* @link https://karaka.app
* @since 1.0.0
*/
abstract class CommentListStatus extends Enum
{
public const ACTIVE = 1;
public const LOCKED = 2;
public const INACTIVE = 3;
}