Jérôme Tamarelle
Jérôme Tamarelle
I think `embed` is the best for your use-case. It allows to override some blocks of the included template. ```twig {# main.twig #} {% embed "included.twig" with { class: 'turbo'...
What DB are you using ?
I'm all for the feature. > We could even consider this as a bugfix IMHO. This will a have a negative impact on performances for messenger applications that uses a...
If they process messages at high throughput, they are going to see a rapid impact on their infrastructure, with congested queues. I've been in that situation, I know it's the...
> I'm not sure I understand your concern. As I wrote, env loaders/processors are used on web requests, so they have to be fast anyway. Fast enough for high-throughput. Note...
This should be already supported by the `PathPackage`, since it prepends the asset url with the request base path ([source](https://github.com/symfony/symfony/blob/6.1/src/Symfony/Component/Asset/PathPackage.php#L69)) and the `x-forwarded-prefix` is used by `Request::getBasePath` (https://github.com/symfony/symfony/pull/37734). Adding a...
I reproduced this bug, thank you very much for the reproducer. I took some hours to dig in this problem. The error occurs is only with event listeners, but there...
You mean `tagged_iterator` is closer to `#[TaggedIterator]` than `#[AutowireIterator]`. But `#[AutowireIterator]` is part of the `#[Autowire]` attribute. In terms of DX, we currently have 2 attributes that does the exact...
Hi @masterbater, we have a [test suite that cover relationships](https://github.com/mongodb/laravel-mongodb/blob/4.1/tests/RelationsTest.php), including `hasMany` and `hasOne`. Could you be more precise about what is the issue: steps to reproduce, expected result and...
Tracked in Jira PHPORM-175