summaryrefslogtreecommitdiffstats
path: root/Core/Authorization/AccessDecisionManagerInterface.php
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2015-09-26 09:20:46 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2015-09-26 09:20:46 +0200
commit18a3795e8062878c5a1d908e257624790598e82f (patch)
tree0260bc79d7d74bc7930aa500e7c34bc0e429d3fc /Core/Authorization/AccessDecisionManagerInterface.php
parenta54d98450e87864bc89aabcf5ad8f4d61c9c430f (diff)
parentd250979823c59287ae69988bc9898632a2eea201 (diff)
downloadsymfony-security-18a3795e8062878c5a1d908e257624790598e82f.zip
symfony-security-18a3795e8062878c5a1d908e257624790598e82f.tar.gz
symfony-security-18a3795e8062878c5a1d908e257624790598e82f.tar.bz2
Merge branch '2.8'
* 2.8: (23 commits) [Validator] added BIC (SWIFT-BIC) validation constraint [TwigBridge] Foundation form layout integration [Security] Deprecated supportsAttribute and supportsClass methods bumped Symfony version to 2.7.6 updated VERSION for 2.7.5 updated CHANGELOG for 2.7.5 bumped Symfony version to 2.3.34 updated VERSION for 2.3.33 update CONTRIBUTORS for 2.3.33 updated CHANGELOG for 2.3.33 [Console] Fix transient HHVM test [OptionsResolver] Fix catched exception along the dependency tree mistakenly detects cyclic dependencies fixed tests [DI] Support deprecated definitions in decorators [DI] Allow to change the deprecation message in Definition [DI] Trigger a deprecated error on the container builder [DI] Dump the deprecated status [DI] Supports the deprecated tag in loaders [DI] Add a deprecated status to definitions Fixing test locations ...
Diffstat (limited to 'Core/Authorization/AccessDecisionManagerInterface.php')
-rw-r--r--Core/Authorization/AccessDecisionManagerInterface.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/Core/Authorization/AccessDecisionManagerInterface.php b/Core/Authorization/AccessDecisionManagerInterface.php
index 16209ba..d18b5e3 100644
--- a/Core/Authorization/AccessDecisionManagerInterface.php
+++ b/Core/Authorization/AccessDecisionManagerInterface.php
@@ -37,6 +37,8 @@ interface AccessDecisionManagerInterface
* @param string $attribute An attribute
*
* @return bool true if this decision manager supports the attribute, false otherwise
+ *
+ * @deprecated since version 2.8, to be removed in 3.0.
*/
public function supportsAttribute($attribute);
@@ -46,6 +48,8 @@ interface AccessDecisionManagerInterface
* @param string $class A class name
*
* @return true if this decision manager can process the class
+ *
+ * @deprecated since version 2.8, to be removed in 3.0.
*/
public function supportsClass($class);
}