Total Complexity | 1 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class Scraper extends AbstractScraper implements ScraperInterface |
||
16 | { |
||
17 | /** |
||
18 | * @var string[] |
||
19 | */ |
||
20 | protected $removables = array('.td-a-rec', '.addtoany_share_save_container'); |
||
21 | |||
22 | /** |
||
23 | * Returns the contents of an article. |
||
24 | * |
||
25 | * @param string $link |
||
26 | * @return \Pilipinews\Common\Article |
||
27 | */ |
||
28 | public function scrape($link) |
||
43 |