├── .github └── workflows │ └── test.yaml ├── LICENSE ├── README.md ├── bin └── generate ├── composer.json ├── phpunit.xml └── src ├── Command └── GenerateCommand.php ├── Doctrine └── PlatenumDoctrineType.php ├── Enum ├── AbstractAttributeEnum.php ├── AbstractCallbackEnum.php ├── AbstractConstantsEnum.php ├── AbstractDocblockEnum.php ├── AbstractStaticEnum.php ├── AttributeEnumTrait.php ├── CallbackEnumTrait.php ├── ConstantsEnumTrait.php ├── DocblockEnumTrait.php ├── EnumTrait.php ├── Member.php └── StaticEnumTrait.php └── Exception └── PlatenumException.php /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderer/Platenum/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderer/Platenum/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderer/Platenum/HEAD/README.md -------------------------------------------------------------------------------- /bin/generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderer/Platenum/HEAD/bin/generate -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderer/Platenum/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderer/Platenum/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Command/GenerateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderer/Platenum/HEAD/src/Command/GenerateCommand.php -------------------------------------------------------------------------------- /src/Doctrine/PlatenumDoctrineType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderer/Platenum/HEAD/src/Doctrine/PlatenumDoctrineType.php -------------------------------------------------------------------------------- /src/Enum/AbstractAttributeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderer/Platenum/HEAD/src/Enum/AbstractAttributeEnum.php -------------------------------------------------------------------------------- /src/Enum/AbstractCallbackEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderer/Platenum/HEAD/src/Enum/AbstractCallbackEnum.php -------------------------------------------------------------------------------- /src/Enum/AbstractConstantsEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderer/Platenum/HEAD/src/Enum/AbstractConstantsEnum.php -------------------------------------------------------------------------------- /src/Enum/AbstractDocblockEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderer/Platenum/HEAD/src/Enum/AbstractDocblockEnum.php -------------------------------------------------------------------------------- /src/Enum/AbstractStaticEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderer/Platenum/HEAD/src/Enum/AbstractStaticEnum.php -------------------------------------------------------------------------------- /src/Enum/AttributeEnumTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderer/Platenum/HEAD/src/Enum/AttributeEnumTrait.php -------------------------------------------------------------------------------- /src/Enum/CallbackEnumTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderer/Platenum/HEAD/src/Enum/CallbackEnumTrait.php -------------------------------------------------------------------------------- /src/Enum/ConstantsEnumTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderer/Platenum/HEAD/src/Enum/ConstantsEnumTrait.php -------------------------------------------------------------------------------- /src/Enum/DocblockEnumTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderer/Platenum/HEAD/src/Enum/DocblockEnumTrait.php -------------------------------------------------------------------------------- /src/Enum/EnumTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderer/Platenum/HEAD/src/Enum/EnumTrait.php -------------------------------------------------------------------------------- /src/Enum/Member.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderer/Platenum/HEAD/src/Enum/Member.php -------------------------------------------------------------------------------- /src/Enum/StaticEnumTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderer/Platenum/HEAD/src/Enum/StaticEnumTrait.php -------------------------------------------------------------------------------- /src/Exception/PlatenumException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderer/Platenum/HEAD/src/Exception/PlatenumException.php --------------------------------------------------------------------------------