summaryrefslogtreecommitdiffstats
path: root/SecurityContext.php
diff options
context:
space:
mode:
Diffstat (limited to 'SecurityContext.php')
-rw-r--r--SecurityContext.php4
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;
}