2018-03-31 05:19:49 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Engelsystem\Routing;
|
|
|
|
|
2018-08-06 12:50:34 +02:00
|
|
|
/**
|
|
|
|
* To switch between different URL schemes.
|
|
|
|
*/
|
2018-03-31 05:19:49 +02:00
|
|
|
interface UrlGeneratorInterface
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @param string $path
|
|
|
|
* @param array $parameters
|
|
|
|
* @return string
|
|
|
|
*/
|
2018-08-06 12:57:48 +02:00
|
|
|
public function linkTo($path, $parameters = []);
|
2018-03-31 05:19:49 +02:00
|
|
|
}
|