Arnaud Frézet

Results 25 comments of Arnaud Frézet

Why is there a normalizer in the AssetsBundle ?

I think this issue should be prioritized because it breaks all debugging options when using the EAV. The solution is to removed the model data collector : ```yaml # debug.yaml...

Routes should rightly declared and an nested configuration with a file declaring routes, importing an other file, which declare another route and import an other routing file... All routes should...

Why assets are hardcoded in the layout ? The dynamic way SHOULD be used to avoid error in production......

But when I call the finder : ```php $this->finder->findBy('PublishedPublication', [ 'author' => $author, ]); // returns results ```

The same issue appears when saving entities. Entities are in the collection when using `dump()`, but when saving, the EAV removes the relation.

In DataGrid/template.html.twig, the following code should be added : ```php {% if sort[column.sortColumn] is defined %} {{ form_widget(sort[column.sortColumn], {label: column.renderLabel | trans}) }} {% else %} {{ column.renderLabel | trans...

Nevermind it can be done in the old way : ``` $data = $publication->get('publishedPublications'); $data->add($publishedPublication); $publication->set('publishedPublications', $data); ``` Note that is not intuitive that this code is not similar to...

It is complicated to extends or override a template which use "use" keyword.

It's look like the EAV does not get the ids from entities, but if I pass directly the ids, it is working. Edit : even with ids, the exception is...