Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
minor #12427 [SecurityBundle] Added AuthorizationChecker and TokenSto…
…rage 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
  • Loading branch information
fabpot committed Nov 9, 2014
2 parents f1c34f9 + d238397 commit 5d8fbb8
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -103,7 +103,9 @@ public function load(array $configs, ContainerBuilder $container)
'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',
Expand Down

0 comments on commit 5d8fbb8

Please sign in to comment.