diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2016-01-20 07:45:12 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2016-01-20 07:45:12 +0100 |
commit | 3515cf295247b4929da32c8f9c733f99855d8f7c (patch) | |
tree | eccd25b294e19f969e016482b39efffb8574424e /Core | |
parent | eaf774984b65264e87287009c46959325d7bdec7 (diff) | |
parent | 83e9f572af0d8c84f5f6ae14a5e7af5fb7b0f7fb (diff) | |
download | symfony-security-3515cf295247b4929da32c8f9c733f99855d8f7c.zip symfony-security-3515cf295247b4929da32c8f9c733f99855d8f7c.tar.gz symfony-security-3515cf295247b4929da32c8f9c733f99855d8f7c.tar.bz2 |
Merge branch '2.3' into 2.7
* 2.3:
[Process] Remove a misleading comment
Improve the phpdoc of SplFileInfo methods
[Process] Use stream based storage to avoid memory issues
Fixed the documentation of VoterInterface::supportsAttribute
Remove useless duplicated tests
[FrameworkBundle] Optimize framework extension tests
Use is_subclass_of instead of Reflection when possible
Diffstat (limited to 'Core')
-rw-r--r-- | Core/Authorization/Voter/VoterInterface.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Authorization/Voter/VoterInterface.php b/Core/Authorization/Voter/VoterInterface.php index d00ff1c..1032cb2 100644 --- a/Core/Authorization/Voter/VoterInterface.php +++ b/Core/Authorization/Voter/VoterInterface.php @@ -27,7 +27,7 @@ interface VoterInterface /** * Checks if the voter supports the given attribute. * - * @param string $attribute An attribute + * @param mixed $attribute An attribute (usually the attribute name string) * * @return bool true if this Voter supports the attribute, false otherwise */ |