Tobias Nyholm

Results 326 comments of Tobias Nyholm

Yeah. If you are developing an application you should consider a specific implementation. AppendStream is using guzzle specific stuff. That is why I didn’t port it to a new package...

Another possible solution would be to treat that cache data as invalid/empty and overwrite it if needed.

Yeah. That is why one would need the PrefixedCache https://github.com/php-cache/cache/pull/96 =) If we do not overwrite we risk that random garbage data from an other service blocks this cache key...

We sure had [some](https://github.com/geocoder-php/Geocoder/pull/512) [discussions](https://github.com/thephpleague/oauth2-client/pull/538) which have shocked me because I know we want to achieve the same goal. I also share your concern about the importance of the PSR-7...

Can I assist somehow to make sure this PR get merged? @yadutaf are you 👍 for a change like this?

After #94 is merged, we should add a version of the following test in `LambdaClientTest`: ``` public function testLambdaTimeoutsCanBeAnticipated() { $this->givenAnEvent([]); $start = microtime(true); $this->runtime->processNextEvent(function () { // This 10s...

I reverted some functionality. See ceb19a5853de0f5fa8fdad1d52648bebad5a73e0. This should be fixed or we need to update the docs. I get a segfault (9 and 10) in PHP when symfony trying to...

Doing “^0.16” would also do the trick. Yes. A 1.0 is near.

That is correct. All services should be private my default. That is symfony's best practice since 4.0. Use dependency injection instead of using the container directly.