2018-03-31 05:19:49 +02:00
|
|
|
<?php
|
|
|
|
|
2023-02-03 20:41:59 +01:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2018-09-04 18:35:13 +02:00
|
|
|
namespace Engelsystem\Http;
|
2018-03-31 05:19:49 +02:00
|
|
|
|
2018-08-06 12:50:34 +02:00
|
|
|
/**
|
|
|
|
* To switch between different URL schemes.
|
|
|
|
*/
|
2018-03-31 05:19:49 +02:00
|
|
|
interface UrlGeneratorInterface
|
|
|
|
{
|
2020-04-07 15:08:49 +02:00
|
|
|
public function to(string $path, array $parameters = []): string;
|
2018-03-31 05:19:49 +02:00
|
|
|
}
|