mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-25 21:34:12 +01:00
11 lines
146 B
PHP
11 lines
146 B
PHP
<?php
|
|
|
|
namespace Combodo\iTop\Controller\Form\Dependency;
|
|
|
|
enum MutableStatusEnumeration
|
|
{
|
|
case MUTATION;
|
|
case ALTERATION;
|
|
case SUPPRESSION;
|
|
}
|