| Total Complexity | 5 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class FirewallMapper |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var RequestMatcherInterface[] |
||
| 21 | */ |
||
| 22 | private $map; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param RequestMatcherInterface[] $map |
||
| 26 | */ |
||
| 27 | public function __construct(array $map) |
||
| 28 | { |
||
| 29 | $this->map = $map; |
||
| 30 | } |
||
| 31 | |||
| 32 | public function getFirewallName(Request $request): ?string |
||
| 41 | } |
||
| 42 | } |
||
| 43 |