minor #34973 [SecurityBundle][FirewallMap] Remove unused property (fancyweb)

This PR was merged into the 3.4 branch.

Discussion
----------

[SecurityBundle][FirewallMap] Remove unused property

| Q             | A
| ------------- | ---
| Branch?       | 3.4
| Bug fix?      | no
| New feature?  | no
| Deprecations? | no
| Tickets       | no
| License       | MIT
| Doc PR        | -

This property is unused. It was removed in https://github.com/symfony/symfony/pull/22943. It was likely reintroduced in a merge commit. It is still on master.

Commits
-------

0904e57b85 [SecurityBundle][FirewallMap] Remove unused property
This commit is contained in:
Nicolas Grekas 2019-12-13 19:28:13 +01:00
commit 30e6ddf262

View File

@ -107,13 +107,11 @@ class _FirewallMap
{
private $container;
private $map;
private $contexts;
public function __construct(ContainerInterface $container, $map)
{
$this->container = $container;
$this->map = $map;
$this->contexts = new \SplObjectStorage();
}
public function getListeners(Request $request)