summaryrefslogtreecommitdiff
path: root/src/Routing/UrlGeneratorInterface.php
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2018-08-06 12:30:30 +0200
committerGitHub <noreply@github.com>2018-08-06 12:30:30 +0200
commita3ce3ea23de2e38968ddc98baf330dfa1f544b1a (patch)
tree646a1dca1db5e801f70733ce6b30d8682241207f /src/Routing/UrlGeneratorInterface.php
parent9ca36bed3446cdd4060d7d6fa1025512d0922e0e (diff)
parent6962c2b790b5428699fe5897de840d41090fcd37 (diff)
Merge pull request #443 from MyIgel/legacy-url-support
UrlGeneratorInterface and "Legacy URL" support
Diffstat (limited to 'src/Routing/UrlGeneratorInterface.php')
-rw-r--r--src/Routing/UrlGeneratorInterface.php13
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 = []);
+}