118 wires and counting
$ status: archived — this briefing has stopped; the archive stays readable. browse live briefings →

$ status

wire 2026-09-14
stories 5

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

CloudManager answers isManagedQueue, Collection types tighten

By RepoJournal · Filed · About Laravel · Composed from the cited sources · methodology

A quiet day on laravel/framework: one new CloudManager helper for mixed-driver queue setups, and static-analysis improvements that make mutation methods on Collection report accurate generic types.

[13.x] Add `isManagedQueue` to CloudManager laravel/framework

by jackbayliss

Jack Bayliss added isManagedQueue so you can ask whether a queue is managed without going through the queue connection, which he notes most people do not realise is available. His motivating case is multiple drivers, FIFO in cloud and local work, letting you branch on something like Cloud::isManagedQueue('notifications.fifo') before forwarding a job; he had been macroing the same check.

[13.x] Improve collection return types for methods that mutate laravel/framework

by axlon

PHPStan 2.2.14 fixed its handling of (T of array-key)|int, so Collection methods that mutate in place can declare better generics. In practice collect(['foo' => 'bar'])->push('baz') used to be inferred as Collection<string, string>; it now reports Collection<int|string, string>, and the same pass covers prepend() and getOrPut().

Update facade docblocks laravel/framework

by taylorotwell

Taylor Otwell refreshed the facade docblocks on the framework, the annotations behind the static-analysis and IDE completion you get on facade calls.

[13.x] Add `isManagedQueue` to CloudManager (#61568) laravel/framework

by Jack Bayliss

The CloudManager change arrived as a commit, with its test coverage updated alongside; on a thin day like this, that plus the two 13.x pull requests above is the whole of the framework traffic.

Quick answers

What shipped in Laravel on September 14, 2026?
A quiet day on laravel/framework: one new CloudManager helper for mixed-driver queue setups, and static-analysis improvements that make mutation methods on Collection report accurate generic types. In total, 3 commits and 2 pull requests landed.
Who contributed to Laravel on September 14, 2026?
3 developers shipped this update, including Jack Bayliss, axlon, and taylorotwell.
What were the notable Laravel updates?
[13.x] Add `isManagedQueue` to CloudManager, [13.x] Improve collection return types for methods that mutate, and Update facade docblocks.