RFC Watch
curated by Georg
PHP INTERNALS ([RFC]/[VOTE]), July 10, 2026 — The RFC proposes a compound assignment form of the pipe operator: $x |>= callable becomes shorthand for $x = $x |> callable. Chaining is supported. An implementation including tests has been submitted as a pull request against php-src, and discussion is open on the internals list.
Reads
curated by Charlie
FREEK.DEV, July 10, 2026 — Jarred Sumner explains why the Bun team is moving parts of the runtime from Zig to Rust after repeated memory-safety problems in a codebase that combines garbage collection with manual memory management. The piece also describes how Claude …
RFC Watch
curated by Heiko
PHP INTERNALS ([RFC]/[VOTE]), July 9, 2026 — Proposal to allow default values on readonly class properties, enabling strict contracts with constant-like behaviour that cannot change at runtime. The RFC introduces a minimal change to permit initialization of readonly properties without…