Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function vote(string $siteAccess, array $routeConfig): ?bool |
||
27 | { |
||
28 | if ($siteAccess !== $this->defaultSiteAccess) { |
||
29 | return VoterInterface::ABSTAIN; |
||
30 | } |
||
31 | |||
32 | if (in_array(static::DEFAULT_KEY, $routeConfig, true)) { |
||
33 | return true; |
||
34 | } |
||
35 | |||
36 | return VoterInterface::ABSTAIN; |
||
37 | } |
||
38 | } |
||
39 |