Skip to content

Instantly share code, notes, and snippets.

@omarkdev
Last active March 5, 2019 01:01
Show Gist options
  • Save omarkdev/abdca7941ea8e50248857a3a7b06c86f to your computer and use it in GitHub Desktop.
Save omarkdev/abdca7941ea8e50248857a3a7b06c86f to your computer and use it in GitHub Desktop.
Object Calisthenics - Primeira Regra - Exemplo 2
<?php
function premiumUsers($users)
{
return array_filter($users, "userTypeIsPremium");
}
function userTypeIsPremium($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