| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | 1 | public function grabFromSitemap() |
|
| 23 | { |
||
| 24 | 1 | system( |
|
| 25 | 1 | "wget {$this->docset->url()}/sitemap.xml --quiet --output-document - | \ |
|
| 26 | 1 | egrep --only-matching '{$this->docset->url()}[^<]+' | \ |
|
| 27 | 1 | wget --input-file - {$this->wgetOptions()}", |
|
| 28 | $result |
||
| 29 | ); |
||
| 30 | |||
| 31 | 1 | return $result === 0; |
|
| 32 | } |
||
| 58 |