Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function evaluate(Target\Version $targetVersion, Limitation $limitationValue): ?bool |
||
29 | { |
||
30 | $matchingTranslations = array_intersect( |
||
31 | $targetVersion->allLanguageCodesList, |
||
32 | $limitationValue->limitationValues |
||
33 | ); |
||
34 | |||
35 | return empty($matchingTranslations) |
||
36 | ? LanguageLimitationType::ACCESS_DENIED |
||
37 | : LanguageLimitationType::ACCESS_GRANTED; |
||
38 | } |
||
39 | } |
||
40 |