Today the maintainers of PHP voted on whether they should add return type declarations in PHP7. And guess what, it passed!
So in PHP7 you can declare this function that guaranties that an array will be returned.
function foo(): array {
return [];
}
You will be able to add a return type for closures, function, generators and class methods. Code which does not declare a return type will continue to work exactly as it currently does.
Get my monthly newsletter with what I learn from running Spatie, building Oh Dear, and maintaining 300+ open source packages. Practical takes on Laravel, PHP, and AI that you can actually use.
No spam. Unsubscribe anytime.
You can also follow me on X.
"I’ve been reading freeks newsletter for a while now, and it’s easily one of my favorite developer newsletters. Freek shares practical, no-nonsense insights from running Spatie, maintaining hundreds of open-source packages, and shipping real products.
Every time I get useful Laravel tips, smart tooling advice, always high quality and immediately applicable."