summaryrefslogtreecommitdiffstats
path: root/Core/SecurityContextInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'Core/SecurityContextInterface.php')
-rw-r--r--Core/SecurityContextInterface.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/Core/SecurityContextInterface.php b/Core/SecurityContextInterface.php
index 77c5bf8..78d6477 100644
--- a/Core/SecurityContextInterface.php
+++ b/Core/SecurityContextInterface.php
@@ -29,14 +29,14 @@ interface SecurityContextInterface
*
* @return TokenInterface|null A TokenInterface instance or null if no authentication information is available
*/
- function getToken();
+ public function getToken();
/**
* Sets the authentication token.
*
* @param TokenInterface $token
*/
- function setToken(TokenInterface $token = null);
+ public function setToken(TokenInterface $token = null);
/**
* Checks if the attributes are granted against the current authentication token and optionally supplied object.
@@ -46,5 +46,5 @@ interface SecurityContextInterface
*
* @return Boolean
*/
- function isGranted($attributes, $object = null);
+ public function isGranted($attributes, $object = null);
}