Use PHP Enums as Doctrine type in Symfony
2 min readDec 29, 2021
--
PHP 8.1 adds support for Enumerations. An Enumeration, is an enumerated type that has a fixed number of possible values. (see more details)
✍🏻 In this article, I’ll show you how to use an Enum as a doctrine WITHOUT adding configuration.
First, what is a doctrine type?