Théo FIDRY

Results 764 comments of Théo FIDRY

Would it be possible to have access to a reproducer or a more complete sample of the issue? i.e. the fixture, the model behind and the complete stack trace? Because...

From the code perspective, this does not look correct to me. A small nitpick: ```php /** * @var ArrayCollection * * @ORM\ManyToMany(targetEntity="App\Entity\Group", inversedBy="users") */ public $groups; ``` Should probably be:...

>It's possible to set a collection into a fixtures writen in yaml than an array Note that I'm aware unless you are using a custom provider. That said I don't...

I think it’s the exact same error: a collection (for relationships) in Doctrine _must_ be Collection instances AFAIK so having an array/iterable there is wrong in that regard On Mon...

I think this may have been introduced by https://github.com/theofidry/AliceDataFixtures/pull/198. If it is a problem I'll happily accept a PR reverting this behaviour _without_ reverting the bug fix included in the...

@dcatz [see my reply](https://github.com/theofidry/AliceDataFixtures/issues/202#issuecomment-1022335282)

An attempt to fix it in #207. Please try it

Thanks for the PR! Would it be possible to have an anti-regression test as well? It is a sensitive part which has broke quite a few times already... I think...

For nelmio alice there is a native loader which should help out. For this library part though there's not been a need for it yet so you would indeed need...

@ktom would it be possible to have more details on what the graph looks like? I don't think you should have much from NelmioAlice as there is a `NativeLoader` or...