| 1 | <?php |
||
| 14 | class VoterContainer implements UrlMatchVoterInterface |
||
| 15 | { |
||
| 16 | /** @var VoterInterface[] */ |
||
| 17 | private $voters = []; |
||
| 18 | |||
| 19 | public function __construct(array $voters = []) |
||
| 23 | |||
| 24 | public function addVoter(VoterInterface $voter): void |
||
| 28 | |||
| 29 | public function matches(string $url, MatchableInterface $item): bool |
||
| 39 | |||
| 40 | private function isMatch(string $url, MatchInterface $match): bool |
||
| 50 | } |
||
| 51 |