| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function translateToXPath($region) { |
||
| 29 | if (!isset($this->regionMap[$region])) { |
||
| 30 | throw new \InvalidArgumentException(sprintf('The "%s" region isn\'t configured!', $region)); |
||
| 31 | } |
||
| 32 | $css = $this->regionMap[$region]; |
||
| 33 | |||
| 34 | return $this->cssSelector->translateToXPath($css); |
||
| 35 | } |
||
| 36 | } |
||
| 37 |