Nicolas Grekas

Results 787 comments of Nicolas Grekas

It'd be great to fix the autosetup and let doctrine manage the sequence.

#54176 might be trying to fix the same issue. Can you please have a look in case this brings inspiration?

NativeSessionStorage also has references to these ini options. Can you please have a look and advise what we should do there?

Maybe we could add the adapter to the message when trigger_error is used? ```php if (isset($context['cache-adapter']) && !isset($replace['{cache-adapter}'])) { $message .= sprintf(' (from "%s")', $context['cache-adapter']); } ``` or something like...

I personally like compact messages :) That's not a strong requirement though. When you can of course!

An option flag might work, WDYT @xabbuh?

So, this line: ` $b = ($container->services['kernel'] ?? $container->get('kernel'));` should be actually ` $b = ($container->services['kernel'] ?? $container->get('kernel', ContainerInterface::NULL_ON_INVALID_REFERENCE));` That's what you mean? I think this comparison in PhpDumper is...