summaryrefslogtreecommitdiffstats
path: root/Core/Authorization/AccessDecisionManagerInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'Core/Authorization/AccessDecisionManagerInterface.php')
-rw-r--r--Core/Authorization/AccessDecisionManagerInterface.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Core/Authorization/AccessDecisionManagerInterface.php b/Core/Authorization/AccessDecisionManagerInterface.php
index 742ea74..ec82800 100644
--- a/Core/Authorization/AccessDecisionManagerInterface.php
+++ b/Core/Authorization/AccessDecisionManagerInterface.php
@@ -27,7 +27,7 @@ interface AccessDecisionManagerInterface
* @param array $attributes An array of attributes associated with the method being invoked
* @param object $object The object to secure
*
- * @return Boolean true if the access is granted, false otherwise
+ * @return bool true if the access is granted, false otherwise
*/
public function decide(TokenInterface $token, array $attributes, $object = null);
@@ -36,7 +36,7 @@ interface AccessDecisionManagerInterface
*
* @param string $attribute An attribute
*
- * @return Boolean true if this decision manager supports the attribute, false otherwise
+ * @return bool true if this decision manager supports the attribute, false otherwise
*/
public function supportsAttribute($attribute);