Cannot apply #[AllowDynamicProperties] to trait %s

Description

The attribute AllowDynamicProperties has no meaning when used with a trait, even as traits can defined properties. Apply it to any class that uses the trait.

Example

<?php

#[AllowDynamicProperties]
trait T {}

?>

Literal Examples

  • Cannot apply #[AllowDynamicProperties] to trait t

Solutions

  • Use the attribute on the class that use the trait.