| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 16 | 1 | public function scrape($content) |
|
| 17 | { |
||
| 18 | return |
||
| 19 | 1 | $this->getAssets('link', 'href', $content, ['rel' => 'shortcut icon']) |
|
| 20 | 1 | ->merge($this->getAssets('link', 'href', $content, ['rel' => 'icon'])) |
|
| 21 | 1 | ->merge($this->getAssets('link', 'href', $content, ['rel' => 'manifest'])) |
|
| 22 | ->merge($this->getAssets('link', 'href', $content, ['rel' => 'mask-icon'])) |
||
| 23 | ->merge($this->getAssets('link', 'href', $content, ['type' => 'image/vnd.microsoft.icon'])); |
||
| 24 | } |
||
| 25 | } |