skip to Main Content

Doctrine PHP 8 Attributes – PHP Versions

I use PHP8, Symfony 5.2 and Doctrine 3.0 in my project, But the PHP 8 attributes, allowed since Doctrine 2.9, doesn't seem to work. use DoctrineORMMappingEntity; ** * @Entity(repositoryClass="AppRepositoryMyClassRepository") */ class MyClass { works fine. use DoctrineORMMappingEntity; #[Entity(repositoryClass: MyClassRepository::class)] class…

VIEW QUESTION

No metadata found for property ApplicationSonataNewsBundleEntityPost::$tags. Please make sure your Doctrine mapping is properly configured – SEO

I installed SonataNews Bundle and Extended it as ApplicationSonataNewsBundle. When I go to /app_dev.php/admin/sonata/news/post/list I have the issue message No metadata found for property ApplicationSonataNewsBundleEntityPost::$tags. Please make sure your Doctrine mapping is properly configured. 500 Internal Server Error - MissingPropertyMetadataException…

VIEW QUESTION
Back To Top
Search