engelsystem/src/Routing/UrlGeneratorInterface.php

14 lines
222 B
PHP
Raw Normal View History

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