for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Aoe\Asdis\Content\Scraper\Html;
use Aoe\Asdis\Content\Scraper\ScraperInterface;
use Aoe\Asdis\Domain\Model\Asset\Collection;
/**
* Scrapes assets from "<meta property="og:image">" tags.
*/
class OpenGraphImage extends AbstractHtmlScraper implements ScraperInterface
{
public function scrape(string $content): ?Collection
return $this->getAssets('meta', 'content', $content, ['property' => 'og:image']);
}