<?php
declare(strict_types=1);
namespace LeagueFlysystemUrlGeneration;
use LeagueFlysystemConfig;
use LeagueFlysystemUnableToGeneratePublicUrl;
interface PublicUrlGenerator
{
/**
* @throws UnableToGeneratePublicUrl
*/
public function publicUrl(string $path, Config $config): string;
}