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