Nicolas PHILIPPE

Results 321 comments of Nicolas PHILIPPE

@simondaigre the methods were re-added and released in v2.0.6

Maybe we can use https://github.com/sebastianbergmann/diff ?

Hi @flohw I'd like this to be fixed some day, but I don't have time to work on this. Sadly we currently don't use this lib at work, so I...

Hi @BackEndTea I'm not very familiar with working with multiple entity managers in the same app. Correct me if I'm wrong: when working with several EM, can you have two...

Hi @camille-guerber The method `Factory::configuration()` was marked as `@internal` in 1.x and should not be used in userland, and no BC policy should be expected from internal class/methods. By the...

the advantage of having a method `localized()` is that it's just another state, that could be composed with the other ones: ```php SomeLocalizedFactory::new()->localized('fr')->withName()->create(); ``` the problem of this approach is...

Hi, sorry for the late reply, but what you could do is: ```php /** * @return Proxy[]&TModel[] */ final public static function createManyLocalized(int $number, ?string $locale = null, array $attributes...

hello @cooldude77 by "session", do you mean "http session"? Browser does not deal with http session. And the method `Browser::session()` refers do the "mink session" which is a different concept

currently, browser does not provide a way to manipulate the session. Maybe this could be a nice addition to this lib? ping @kbond For now, maybe you could use this...

Hi @henryfoster I'm not sure to fully grasp the problem 🤔 Do you use `migrate` or `schema` strategy to restore your database? How is your index declared? I was thinking...