Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | public function process() |
||
9 | { |
||
10 | $this->initWrapper($this->setLocalName()); |
||
11 | list($chosenCountry, $detectedCountry) = explode('|', $this->getReference()); |
||
12 | |||
13 | if ($chosenCountry != $detectedCountry) { |
||
14 | $this->setScore($this->getFailScore()); |
||
15 | $this->setResult(); |
||
16 | } else { |
||
17 | $this->setScore($this->getScore()); |
||
18 | $this->setResult(); |
||
19 | } |
||
28 | } |