bug fixes / dbmapper fixes

This commit is contained in:
Dennis Eichhorn 2021-12-19 20:20:39 +01:00
parent 1edffabd5d
commit 1dc6ba9dbe
2 changed files with 16 additions and 4 deletions

View File

@ -1,4 +1,16 @@
<?php declare(strict_types=1);
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Template
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
use phpOMS\Uri\UriFactory;

View File

@ -28,9 +28,9 @@ abstract class PermissionState extends Enum
{
public const ARTICLE = 1;
public const BUYER = 2;
public const BUYER = 2;
public const SELLER = 3;
public const SELLER = 3;
public const SHOP = 4;
public const SHOP = 4;
}