Results 68 comments of Antoine Lamirault

Indeed event is dispatched on a new Event dispatcher (without listeners) https://github.com/symfony/symfony/blob/6.2/src/Symfony/Bundle/FrameworkBundle/Command/CacheClearCommand.php#L110 ```php // The current event dispatcher is stale, let's not use it anymore $this->getApplication()->setDispatcher(new EventDispatcher()); ``` I'm don't...

I think we can implements same logic of monolog [RotatingFileHandler](https://github.com/Seldaek/monolog/blob/main/src/Monolog/Handler/RotatingFileHandler.php) in `FileProfilerStorage` Have a parameter in config is a good thing

@fabpot So when we write a new profile, we want cleaning index file and profiles files. My approach is to read index file while we have profiles "expired". I assume...

Truncated description is not a problem ? We can maybe change type in database in order to allow longest text ? And manage length in UI ? (css, ellipsis or...

Hello, we updated [documentation](https://symfony.com/doc/5.4/service_container/tags.html#tagged-services-with-index) in order to explain behaviors.

Hi all, I rebased on branch 6.3. This feature improve a lot DX and I hope it could be merge before 7.0. (6.3 ? :smiley:) Feedback/review are welcomed ! (@94noni...

I rebased on 6.4. Considering the number of upvote on issue, the feature is highly expected. Reviewer are welcomed ! :pray:

I don't use repman anymore in my new company. So I don't you it and can't continue migration. Feel free to open a new PR if you want :smile:

I'm using [DTO](https://api-platform.com/docs/core/dto/) and I don't want entity properties as filter names. Alias them could be useful in this case ```php new GetCollection( output: FooDto::class, provider: FooDtoProvider::class ), ``` What...