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