| Conditions | 2 |
| Paths | 3 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function findFirstInstance($selector) { |
||
| 30 | |||
| 31 | try { |
||
| 32 | |||
| 33 | $xPath = CssSelector::toXPath($selector); |
||
| 34 | $xPath = '(' . $xPath . ')[1]'; |
||
| 35 | |||
| 36 | return $this->filterXPath($xPath); |
||
| 37 | } |
||
| 38 | catch (ParseException $e) { |
||
| 39 | |||
| 40 | throw new ParseException("{$e->getMessage()} Invalid Selector: $selector"); |
||
| 41 | } |
||
| 42 | } |
||
| 43 | |||
| 45 |