Arnaud Frézet
Arnaud Frézet
Annotations are used for routing, mixed with yaml. So it is not possible to override those routes, and as the login route is under the global routes importation, if a...
The following code does not work : ```php $queryBuilder = $this->finder->createFamilyBuilder('Publication'); $visibleAttribute = $this->finder->getFamily('PublishedPublication')->getAttribute('visible'); $queryBuilder->apply( $queryBuilder ->a('publishedPublications') ->join() ->attribute($visibleAttribute) ->equals(true) ); ``` But the documentation says it is the way...
The Doctrine profiler is disabled in EAV. But as the EAV profiler does not work, it is not possible to see what queries are made in a request.....
When using the serializer into a project using the EAV bundle, the EAV Entity provider fails if an entity is not managed by EAV. It means that all entity/object which...
If in an EAV entity a getter is set, if the associated setter is not set, the EAV will not use it and crash silently....... This is totally random and...
When using the `dump()` function to debug an EAV entity, an error about nesting levels occurred. We should be able to dump values to improve debugging?
The EAV serializer is not working : some attributes are not processed by the EAV normalizer, and as it override and change the default behavior of the serializer, it is...
When a user try to log in without a wrong user name (wrong or missing), no error message is displayed, the page is just "refreshed".
When getting a "null" value into a field render, we get the following error : `Expected argument of type "string", "null" given`