minor #12427 [SecurityBundle] Added AuthorizationChecker and TokenStorage to class cache (iltar)

This PR was merged into the 2.6-dev branch.

Discussion
----------

[SecurityBundle] Added AuthorizationChecker and TokenStorage to class cache

| Q             | A
| ------------- | ---
| Bug fix?      | yes
| Tests pass?   | yes
| License       | MIT

I've added the new `AuthorizationChecker` and `TokenStorage` to the list of classes to compile. The `SecurityContext` was already in there, but the new ones were missing. They are added because if the `SecurityContext` is always loaded, those are always loaded as of `2.6`.

Commits
-------

d238397 [SecurityBundle] Added AuthorizationChecker and TokenStorage to class cache
This commit is contained in:
Fabien Potencier 2014-11-09 08:40:26 +01:00
commit 5d8fbb86ce

View File

@ -103,7 +103,9 @@ class SecurityExtension extends Extension
'Symfony\\Component\\Security\\Core\\SecurityContext',
'Symfony\\Component\\Security\\Core\\User\\UserProviderInterface',
'Symfony\\Component\\Security\\Core\\Authentication\\AuthenticationProviderManager',
'Symfony\\Component\\Security\\Core\\Authentication\\Token\\Storage\\TokenStorage',
'Symfony\\Component\\Security\\Core\\Authorization\\AccessDecisionManager',
'Symfony\\Component\\Security\\Core\\Authorization\\AuthorizationChecker',
'Symfony\\Component\\Security\\Core\\Authorization\\Voter\\VoterInterface',
'Symfony\\Bundle\\SecurityBundle\\Security\\FirewallMap',
'Symfony\\Bundle\\SecurityBundle\\Security\\FirewallContext',