engelsystem/src/Http/UrlGeneratorInterface.php

12 lines
194 B
PHP
Raw Normal View History

2018-03-31 05:19:49 +02:00
<?php
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
}