Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function crawled(UriInterface $url, ResponseInterface $response, ?UriInterface $foundOnUrl = null) |
||
27 | { |
||
28 | $contents = str_replace($this->entry.'/', '/', $response->getBody()); |
||
29 | $contents = str_replace($this->entry, '/', $contents); |
||
30 | |||
31 | $this->destination->write( |
||
32 | ltrim($url->getPath().'/index.html', '/'), |
||
33 | $contents |
||
34 | ); |
||
35 | } |
||
36 | |||
42 |