Symfony 7.1.0 released (Symfony Blog)

https://symfony.com/blog/symfony-7-1-0-released

See new features here (related blog posts list)

11 points · 1 comments · view on lemmy.world

1 Comments

Olissipo@programming.dev · 2 pts · 2y

I particularly like the new Mapped Route Parameters.

/show/{id}/

/show/{id:document}/

For multiple entities, it's cleaner and more beginner-friendly than using the #[MapEntity] attribute (which is still an option).

And imo it's a good move to deprecate "not passing the mapping" even for single entities. With the mapping the behaviour is more intuitive and "feels" less magic.