Files
shlink/module/Common/src/Service/PreviewGeneratorInterface.php

14 lines
299 B
PHP
Raw Normal View History

<?php
namespace Shlinkio\Shlink\Common\Service;
interface PreviewGeneratorInterface
{
/**
* Generates and stores preview for provided website and returns the path to the image file
*
* @param string $url
* @return string
*/
public function generatePreview($url);
}