| 1 | <?php |
||
| 15 | class FirewallMapper |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var array|RequestMatcherInterface[] |
||
| 19 | */ |
||
| 20 | private $map; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param array|RequestMatcherInterface[] $map |
||
| 24 | */ |
||
| 25 | public function __construct(array $map) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param Request $request |
||
| 32 | * @return string|null |
||
| 33 | */ |
||
| 34 | public function getFirewallName(Request $request) |
||
| 44 | } |
||
| 45 |