You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
271 B
PHTML
17 lines
271 B
PHTML
7 years ago
|
<?php
|
||
|
|
||
6 years ago
|
namespace Engelsystem\Http;
|
||
7 years ago
|
|
||
6 years ago
|
/**
|
||
|
* To switch between different URL schemes.
|
||
|
*/
|
||
7 years ago
|
interface UrlGeneratorInterface
|
||
|
{
|
||
|
/**
|
||
|
* @param string $path
|
||
|
* @param array $parameters
|
||
|
* @return string
|
||
|
*/
|
||
6 years ago
|
public function to($path, $parameters = []);
|
||
7 years ago
|
}
|