Larry Garfield

Results 157 comments of Larry Garfield

@Nyholm Have you an opinion here? Having a solid PSR-7/13 implementation that "just works" would be very beneficial.

PSR-13 is specifically intended to handle both header and body, as the two are often duplicated. It's for metdata such as http://www.iana.org/assignments/link-relations/link-relations.xhtml That can be encoded in an HTTP header,...

It's not for the request, it's for the response. And with intersection types, there's no need to couple to a specific PSR-7 library. A method can type against `ResponseInterface&LinkProviderInterface` and...

I have a detailed writeup of how we're using Lando in GHA here: https://peakd.com/php/@crell/running-lando-on-github-actions-rnq6q0

I also don't see a need for an immutable version here, but I am all in favor of making the methods fluent. Just returning `$this` is fine.

I'm still getting this on Firefox on Linux, with the latest Reveal release. It used to happen a lot, then seemed to go away, and now it's happening again a...

I'm not entirely sure I follow. You have this: ```php class Foo { public string $name = 'Hello'; public ?array $bar = null; } ``` And want it serialized to:...

Side note: I hate nulls. Basically every bug that's been filed against Serde is related to nulls. 😢 I'd have to double check, but at the moment I don't think...