File "TinyPlaceholderGenerator.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/spatie/laravel-medialibrary/src/ResponsiveImages/TinyPlaceholderGenerator/TinyPlaceholderGenerator.php
File size: 398 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\MediaLibrary\ResponsiveImages\TinyPlaceholderGenerator;
interface TinyPlaceholderGenerator
{
/*
* This function should generate a tiny jpg representation of the image
* given in $sourceImage. The tiny jpg should be saved at $tinyImageDestination.
*/
public function generateTinyPlaceholder(string $sourceImage, string $tinyImageDestination): void;
}