engelsystem/src/Routing/UrlGeneratorInterface.php

17 lines
278 B
PHP
Raw Normal View History

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