Extend form error levels

This commit is contained in:
Dennis Eichhorn 2018-06-03 16:49:01 +02:00
parent c2df3a1ffd
commit 9bf5ed087d

View File

@ -27,6 +27,7 @@ use phpOMS\Stdlib\Base\Enum;
abstract class NotificationLevel extends Enum
{
public const OK = 'ok';
public const INFO = 'info';
public const WARNING = 'warning';
public const ERROR = 'error';
}