| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 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, ['type' => 'image/vnd.microsoft.icon'])); |
|
| 22 | } |
||
| 23 | } |