engelsystem/src/Http/UrlGeneratorInterface.php

14 lines
220 B
PHP
Raw Normal View History

2018-03-31 05:19:49 +02:00
<?php
declare(strict_types=1);
namespace Engelsystem\Http;
2018-03-31 05:19:49 +02:00
/**
* To switch between different URL schemes.
*/
2018-03-31 05:19:49 +02:00
interface UrlGeneratorInterface
{
public function to(string $path, array $parameters = []): string;
2018-03-31 05:19:49 +02:00
}