How can I convert php annotation to php8 attributes
I have this: /** * @var string[] */ #[ORMColumn(type: 'json', nullable: true)] private array $roles = []; How can I change string[] to php8 attribute ? Something like #[Array(string)] I am working with Symfony and Doctrine, and I am trying…