Skip to content

Instantly share code, notes, and snippets.

@eminetto
Created November 4, 2012 14:05
Show Gist options
  • Save eminetto/4012058 to your computer and use it in GitHub Desktop.
Save eminetto/4012058 to your computer and use it in GitHub Desktop.
/**
* Faz a autorização do usuário para acessar o recurso
* @return boolean
*/
public function authorize()
{
$auth = new AuthenticationService();
if ($auth->hasIdentity()) {
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment