mirror of
https://github.com/shlinkio/shlink.git
synced 2025-02-25 18:45:27 -06:00
14 lines
299 B
PHP
14 lines
299 B
PHP
<?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);
|
|
}
|