Skip to content

Instantly share code, notes, and snippets.

@omarkdev
Created March 5, 2019 01:21
Show Gist options
  • Save omarkdev/1ad59aae4411c2ed07c823d96f56afd0 to your computer and use it in GitHub Desktop.
Save omarkdev/1ad59aae4411c2ed07c823d96f56afd0 to your computer and use it in GitHub Desktop.
Object Calisthenics - Primeira Regra - Exemplo 3
<?php
function premiumUsers($users)
{
return array_filter($users, function ($user) {
return $user->type === USER_TYPE_PREMIUM;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment