Dmitri Perunov

Results 64 comments of Dmitri Perunov
trafficstars

How does one overrides whole states tree in Symfony4, where bundle configuration override was removed? Is it not possible anymore?

@AndreasA thank you, Andreas. It's good to know it still works.

Yeah, that was the issue. :) Thats is how guys at sylius deal with it. Event listener, that changes class meta data according to config. https://github.com/Sylius/Sylius/blob/master/src/Sylius/Bundle/ResourceBundle/EventListener/LoadORMMetadataSubscriber.php So if there is...

This package is a pure angular implementation and doesn't require jQuery, therefore your fix is not acceptable. Plus PR doesn't properly introduce jQuery into package dependencies, even if it would...

Is there a reason to introduce new expressions, when `HaveNameMatching('*Controller')` already exists? If wildcard is not good enough, then perhaps generic regexp expression can be added

That's a good point with `__invoke` for command handlers, but isn't self validated at runtime? It sounds more of unit test territory than architect decision. As for generic methods, shouldn't...

Just for information, - It's on packagist https://packagist.org/packages/unleash/client - It's quite well maintained https://github.com/Unleash/unleash-client-php https://github.com/Unleash/unleash-client-symfony with github actions, rector, php-cs-fixer, phpstan, phpunit.

Isn't this a security complication to allow to create new admin users via cli? This was probably left out intentionally.

@xtfs Hi, what kind of Groups? Normalization context groups? Yes, I do. I don't think, that I'm using xdebug, unless it's enabled in vanilla docker-compose setup.

@soyuka Hi I was working on custom Filter, not the Extension, my query looks like this > GET /acmes?type.id[]=1&type.id[]=2 > SELECT o FROM App\Entity\Acme o LEFT JOIN o.types type WHERE...