This repository has been archived by the owner on Sep 14, 2022. It is now read-only.
Releases: acelaya/doctrine-enum-type
Releases · acelaya/doctrine-enum-type
v2.5.0
v2.4.0
v2.3.0
v2.2.3
Added
- #30 Added PHP 7.3 to the build matrix.
Changed
- #36 Updated dev dependencies.
- #31 Performance and maintainability slightly improved by enforcing via code sniffer that all global namespace classes, functions and constants are explicitly imported.
- #32 Updated infection to v0.11
- #34 Added dependency on Shlinkio coding standard.
Deprecated
- Nothing
Removed
- Nothing
Fixed
- Nothing
v2.2.2
Added
- Nothing
Changed
- Nothing
Deprecated
- Nothing
Removed
- Nothing
Fixed
-
#28 Fixed a defect preventing the
length
property from the field declaration to be applied.Now, if you declare your field like this
@ORM\Column(type=Action::class, length=16)
the field will respect the length and be mapped to aVARCHAR(16)
.