Cannot apply #[AllowDynamicProperties] to enum %s

Description

The attribute AllowDynamicProperties has no meaning when used with an enumeration, even as enums can define properties.

Example

<?php

#[AllowDynamicProperties]
enum E {}

?>

Literal Examples

  • Cannot apply #[AllowDynamicProperties] to enum e

Solutions

  • Do not use the attribute on an enumeration.