diff options
author | Igor Scheller <igor.scheller@igorshp.de> | 2018-03-31 05:19:49 +0200 |
---|---|---|
committer | Igor Scheller <igor.scheller@igorshp.de> | 2018-08-05 21:46:05 +0200 |
commit | 6962c2b790b5428699fe5897de840d41090fcd37 (patch) | |
tree | 646a1dca1db5e801f70733ce6b30d8682241207f /src/Routing/UrlGeneratorInterface.php | |
parent | 9ca36bed3446cdd4060d7d6fa1025512d0922e0e (diff) |
Legacy URL Support
Diffstat (limited to 'src/Routing/UrlGeneratorInterface.php')
-rw-r--r-- | src/Routing/UrlGeneratorInterface.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Routing/UrlGeneratorInterface.php b/src/Routing/UrlGeneratorInterface.php new file mode 100644 index 00000000..d97da30d --- /dev/null +++ b/src/Routing/UrlGeneratorInterface.php @@ -0,0 +1,13 @@ +<?php + +namespace Engelsystem\Routing; + +interface UrlGeneratorInterface +{ + /** + * @param string $path + * @param array $parameters + * @return string + */ + public function to($path, $parameters = []); +} |