From 9bf5ed087dfbdc49fcb562eaf7231281869cf726 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 3 Jun 2018 16:49:01 +0200 Subject: [PATCH] Extend form error levels --- Message/NotificationLevel.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Message/NotificationLevel.php b/Message/NotificationLevel.php index c75ca857f..bfc77090f 100644 --- a/Message/NotificationLevel.php +++ b/Message/NotificationLevel.php @@ -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'; }