fix const alignment

This commit is contained in:
Dennis Eichhorn 2020-09-01 07:38:02 +02:00
parent f3d121f4b5
commit 77207df13e

View File

@ -26,9 +26,9 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class PermissionState extends Enum
{
public const HELP_GENERAL = 1;
public const HELP_GENERAL = 1;
public const HELP_MODULE = 2;
public const HELP_MODULE = 2;
public const HELP_DEVELOPER = 3;
}