blob: b3b6b12d289dbd13449175586efff21254c71df1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
namespace Engelsystem\Http;
/**
* To switch between different URL schemes.
*/
interface UrlGeneratorInterface
{
/**
* @param string $path
* @param array $parameters
* @return string
*/
public function to($path, $parameters = []);
}
|