Skip to content

Instantly share code, notes, and snippets.

@TijmenWierenga
Last active May 15, 2018 06:35
Show Gist options
  • Save TijmenWierenga/a2b73a0725147da391ef4438756d3731 to your computer and use it in GitHub Desktop.
Save TijmenWierenga/a2b73a0725147da391ef4438756d3731 to your computer and use it in GitHub Desktop.
PHP strongly typed arrays with a required length of one
<?php
public function save(User $user, User ...$users): void
{
$users[] = $user;
foreach ($users as $user) {
// Save the user
}
}
$users = [
new User('Tijmen'),
new User('Paul'),
new User('Bart')
];
save(...$users);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment