engelsystem/src/Http/UrlGeneratorInterface.php

17 lines
271 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
{
/**
* @param string $path
* @param array $parameters
* @return string
*/
public function to($path, $parameters = []);
2018-03-31 05:19:49 +02:00
}