| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 7 | 
| Code Lines | 5 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 18 |     public function convert(ElementFinder $finder, string $affectedUrl = ''): ElementFinderInterface { | ||
| 19 | $modifier = new ConvertUrlElementFinderModifier( | ||
| 20 | $affectedUrl, | ||
| 21 |         $finder->value('//base/@href')->first() ?? '' | ||
| 22 | ); | ||
| 23 |       return $finder->modify('//*[@src] | //*[@href] | //form[@action]', $modifier); | ||
| 24 | } | ||
| 25 | |||
| 26 | } |