engelsystem/src/Http/UrlGeneratorInterface.php

14 lines
220 B
PHP

<?php
declare(strict_types=1);
namespace Engelsystem\Http;
/**
* To switch between different URL schemes.
*/
interface UrlGeneratorInterface
{
public function to(string $path, array $parameters = []): string;
}