diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2014-04-18 22:41:38 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-04-18 22:41:38 +0200 |
commit | bb5a27217465a6923ab1ee28825240b83538db56 (patch) | |
tree | 5c4b8d62ebed05ffa4c7df1386e0a6f443db34f7 /Core | |
parent | 2a3393fbb9f593f6d0958a3058466593d6f9f69f (diff) | |
parent | c5899fcc178588d382ad4f65d426c0ab38b10951 (diff) | |
download | symfony-security-bb5a27217465a6923ab1ee28825240b83538db56.zip symfony-security-bb5a27217465a6923ab1ee28825240b83538db56.tar.gz symfony-security-bb5a27217465a6923ab1ee28825240b83538db56.tar.bz2 |
minor #10738 [2.4] Fix doc blocks (romainneutron)
This PR was merged into the 2.4 branch.
Discussion
----------
[2.4] Fix doc blocks
| Q | A
| ------------- | ---
| Bug fix? | no
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Tests pass? | yes
| Fixed tickets | n/a
| License | MIT
this follows #10737
Commits
-------
c01915d Fix doc blocks
Diffstat (limited to 'Core')
-rw-r--r-- | Core/Authorization/Voter/ExpressionVoter.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Core/Authorization/Voter/ExpressionVoter.php b/Core/Authorization/Voter/ExpressionVoter.php index 09953ac..3263803 100644 --- a/Core/Authorization/Voter/ExpressionVoter.php +++ b/Core/Authorization/Voter/ExpressionVoter.php @@ -32,7 +32,9 @@ class ExpressionVoter implements VoterInterface /** * Constructor. * - * @param ExpressionLanguage $expressionLanguage + * @param ExpressionLanguage $expressionLanguage + * @param AuthenticationTrustResolverInterface $trustResolver + * @param RoleHierarchyInterface|null $roleHierarchy */ public function __construct(ExpressionLanguage $expressionLanguage, AuthenticationTrustResolverInterface $trustResolver, RoleHierarchyInterface $roleHierarchy = null) { |