<?php declare(strict_types=1); namespace Aton\Enums; /** * ATON data types */ enum ATONType: string { case INT = 'int'; case FLOAT = 'float'; case STR = 'str'; case BOOL = 'bool'; case ARRAY = 'array'; case OBJECT = 'object'; case NULL = 'null'; }
info at phpclasses dot org