Gernott / mask

TYPO3 Extension Mask
https://www.facebook.com/typo3mask
GNU General Public License v2.0
130 stars 86 forks source link

Fix Enumeration deprection #651

Closed nitori closed 1 week ago

nitori commented 1 week ago

Fixes #650

My attempt at fixing the enum deprecation issue by replacing the legacy TYPO3 Enumeration with PHP native enum types.

A lot of places use the enums as array keys, which required me to use ->value instead of the enum directly (explained in the issue).

Greetings Nitori

nhovratov commented 1 week ago

Thanks, perfect!!!