From ed909b224cc6d5b0a32e232a332ecc3ef6f8f5ce Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 31 Mar 2017 14:59:39 +0200 Subject: [PATCH] fixes #91 --- Asset/AssetType.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Asset/AssetType.php b/Asset/AssetType.php index e6433fa03..c60cd0daf 100644 --- a/Asset/AssetType.php +++ b/Asset/AssetType.php @@ -29,11 +29,10 @@ use phpOMS\Datatypes\Enum; * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 - * @todo Should be changed to int instead of string */ abstract class AssetType extends Enum { - /* public */ const CSS = 'css'; - /* public */ const JS = 'js'; - /* public */ const JSLATE = 'jslate'; + /* public */ const CSS = 0; + /* public */ const JS = 1; + /* public */ const JSLATE = 2; }