Ruud Kamphuis

Results 363 comments of Ruud Kamphuis

Yes. Downside is that now you are using the `test` environment. In [TwigStan](https://github.com/twigstan/twigstan) I came up with this solution: https://github.com/twigstan/twigstan/blob/90e1792a68dc0cd9471ce87a1e1f0145467299f9/twig-loader-symfony.php.dist#L18-L26

After looking at this, I spotted a few bugs/problems in TwigStan that I solved. I created a PR with updates: - https://github.com/strangebuzz/MicroSymfony/pull/99

I found the problem. Twig 3.15 was released in the weekend without me knowing it. I made sure this won't happen again by doing: - https://github.com/twigstan/twigstan/pull/101 - https://github.com/twigstan/twigstan/pull/102 From now...

I think it should be possible to specify a `signer` service on the attribute, in case you have different signers with different secrets. ```php #[IsSignatureValid(signer: 'my_custom_signer_service'] public function someAction(): Response...

Thanks for this PR, don't take me wrong, I love this project ❤️ , but what's the point of setting this value if PHP CS Fixer still insists on showing...

This is how I do it in our project, where we have our own CommandBus interface (that has a Symfony Messenger implementation). You can use this as inspiration 😉 Our...

Not sure if you are aware, if so, please ignore: Doctrine now supports enumType so that you can write it like this: ```php enum FeeCategory: string {} #[Entity] class Fee...

Same issue here. Discarding changes of 100 files lets you think that Lazygit crashed. Some ideas to improve this: Show a spinner, or a progress bar showing 1 of 100...