implement todos

This commit is contained in:
Dennis Eichhorn 2021-07-15 21:51:30 +02:00
parent 582ce1e61d
commit 2737342f98
2 changed files with 4 additions and 4 deletions

BIN
Docs/Dev/img/er.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 307 KiB

View File

@ -26,11 +26,11 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class AttributeValueType extends Enum
{
public const _INT = 0;
public const _INT = 1;
public const _STRING = 1;
public const _STRING = 2;
public const _FLOAT = 2;
public const _FLOAT = 3;
public const _DATETIME = 3;
public const _DATETIME = 4;
}