diff options
author | Dominique Bongiraud <doume031@wanadoo.fr> | 2010-10-23 09:58:54 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2010-10-24 09:55:31 +0200 |
commit | e96c4eb4c5c97bdad7d93ce2f666ffedf453572a (patch) | |
tree | 92d324c9dc091c2448ba4a80d739cce080025a1f /SecurityContext.php | |
parent | 459534e8cca52e07607949922b588b3a33be9f39 (diff) | |
download | symfony-security-e96c4eb4c5c97bdad7d93ce2f666ffedf453572a.zip symfony-security-e96c4eb4c5c97bdad7d93ce2f666ffedf453572a.tar.gz symfony-security-e96c4eb4c5c97bdad7d93ce2f666ffedf453572a.tar.bz2 |
[Security]Fixed CS
Diffstat (limited to 'SecurityContext.php')
-rw-r--r-- | SecurityContext.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SecurityContext.php b/SecurityContext.php index 9bae752..ff0df08 100644 --- a/SecurityContext.php +++ b/SecurityContext.php @@ -64,7 +64,7 @@ class SecurityContext * * @return TokenInterface|null A TokenInterface instance or null if no authentication information is available */ - function getToken() + public function getToken() { return $this->token; } @@ -74,7 +74,7 @@ class SecurityContext * * @param TokenInterface $token A TokenInterface token, or null if no further authentication information should be stored */ - function setToken(TokenInterface $token = null) + public function setToken(TokenInterface $token = null) { $this->token = $token; } |