mirror of
https://github.com/Karaka-Management/oms-Workflow.git
synced 2026-01-11 14:58:39 +00:00
41 lines
698 B
PHP
Executable File
41 lines
698 B
PHP
Executable File
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.4
|
|
*
|
|
* @package Modules\Workflow\Models
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Workflow\Models;
|
|
|
|
use phpOMS\Stdlib\Base\Enum;
|
|
|
|
/**
|
|
* Task status enum.
|
|
*
|
|
* @package Modules\Workflow\Models
|
|
* @license OMS License 1.0
|
|
* @link https://orange-management.org
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class WorkflowStatus extends Enum
|
|
{
|
|
public const OPEN = 1;
|
|
|
|
public const WORKING = 2;
|
|
|
|
public const SUSPENDED = 3;
|
|
|
|
public const CANCELED = 4;
|
|
|
|
public const DONE = 5;
|
|
|
|
public const CLOSED = 6;
|
|
}
|