This commit is contained in:
Dennis Eichhorn 2017-03-31 14:59:39 +02:00
parent 7b57c8e28a
commit ed909b224c

View File

@ -29,11 +29,10 @@ use phpOMS\Datatypes\Enum;
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://orange-management.com * @link http://orange-management.com
* @since 1.0.0 * @since 1.0.0
* @todo Should be changed to int instead of string
*/ */
abstract class AssetType extends Enum abstract class AssetType extends Enum
{ {
/* public */ const CSS = 'css'; /* public */ const CSS = 0;
/* public */ const JS = 'js'; /* public */ const JS = 1;
/* public */ const JSLATE = 'jslate'; /* public */ const JSLATE = 2;
} }