Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | public function scrape($link) |
||
29 | { |
||
30 | $this->prepare((string) $link); |
||
31 | |||
32 | $title = $this->title('.tdb-title-text'); |
||
33 | |||
34 | $this->remove((array) $this->removables); |
||
35 | |||
36 | $body = $this->body('.tdb_single_content > .tdb-block-inner.td-fix-index'); |
||
37 | |||
38 | $html = $this->html($body); |
||
39 | |||
40 | return new Article($title, $html, $link); |
||
41 | } |
||
43 |