Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
33 | 1 | public function scrape($content) |
|
34 | { |
||
35 | 1 | $assetCollection = new AssetCollection(); |
|
36 | 1 | foreach($this as $scraper) { |
|
37 | /** @var \Aoe\Asdis\Content\Scraper\ScraperInterface $scraper */ |
||
38 | 1 | $assetCollection->merge($scraper->scrape($content)); |
|
39 | } |
||
40 | 1 | return $assetCollection; |
|
41 | } |
||
42 | } |