From 6438c075dfab2e39d2130cb84b6caf8f3324d920 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 1 Sep 2020 07:38:03 +0200 Subject: [PATCH] fix const alignment --- Models/PermissionState.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Models/PermissionState.php b/Models/PermissionState.php index c2c57ed..57f486a 100644 --- a/Models/PermissionState.php +++ b/Models/PermissionState.php @@ -26,9 +26,9 @@ use phpOMS\Stdlib\Base\Enum; */ abstract class PermissionState extends Enum { - public const SALES_ITEM = 1; + public const SALES_ITEM = 1; public const PURCHASE_ITEM = 2; - public const STOCK_ITEM = 3; + public const STOCK_ITEM = 3; }