Toon Verwerft

Results 280 comments of Toon Verwerft

Hello @leroy0211, Sound like a solid idea! Maybe best to inject a `RequestMatcherInterface` into the listener so that you can do whatever matching you want. I would surely accept a...

@kbond Since we needed this functionallity in our app, I started from the provided controller and built (parts) of your task list in our application. It can currently: * upload...

Closing this one because of inactivity If the issue still persists - feel free to reopen and provide some additional context.

Having the possibility to set default types on templates could be the solution for these kind of issues: E.g. PHPStan: https://github.com/phpstan/phpdoc-parser/pull/148

Closing this one - it will be dealt with in https://github.com/phpro/soap-client/issues/464

GrumPHP does not set any php ini settings for you. Would it be an option to set this at PHP CLI level? Something like: ```yaml EXEC_GRUMPHP_COMMAND: docker-compose exec -T php...

Closing because of inactivity

Running grumphp in parallel mode opens up a separate process for every task you start. There is communication between those 2 processes and that's probably what is taking up the...

> I solved it by registering a middleware to replace the file collections with an empty object. Can you share your solution? > I'm not sure if this file collection...

Can you verify swapping the "serialized" context coming back from the worker with the original context also does the trick? ```diff $property = new ReflectionProperty($value, 'context'); $property->setAccessible(true); - $property->setValue($value, new...