oms-ProjectManagement/Models/ProgressType.php
Scrutinizer Auto-Fixer b98435c229 Scrutinizer Auto-Fixes
This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
2017-11-05 18:06:04 +00:00

36 lines
732 B
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.1
*
* @category TBD
* @package TBD
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
namespace Modules\ProjectManagement\Models;
use phpOMS\Stdlib\Base\Enum;
/**
* Task type enum.
*
* @category Tasks
* @package Modules
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
*/
abstract class ProgressType extends Enum
{
/* public */ const MANUAL = 0;
/* public */ const LINEAR = 1;
/* public */ const EXPONENTIAL = 2;
/* public */ const LOG = 3;
/* public */ const TASKS = 4;
}