Skip to content

Instantly share code, notes, and snippets.

@lmuzinic
Created January 29, 2018 14:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lmuzinic/b8cc3ca3e61a36749f976e195da2e5ea to your computer and use it in GitHub Desktop.
Save lmuzinic/b8cc3ca3e61a36749f976e195da2e5ea to your computer and use it in GitHub Desktop.
<?php
class User
{
// ...
public function isAdmin()
{
if ($this->status === self::ADMIN) {
return true;
}
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment