summaryrefslogtreecommitdiff
path: root/src/Routing/UrlGeneratorInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Routing/UrlGeneratorInterface.php')
-rw-r--r--src/Routing/UrlGeneratorInterface.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Routing/UrlGeneratorInterface.php b/src/Routing/UrlGeneratorInterface.php
index d97da30d..17385bc2 100644
--- a/src/Routing/UrlGeneratorInterface.php
+++ b/src/Routing/UrlGeneratorInterface.php
@@ -2,6 +2,9 @@
namespace Engelsystem\Routing;
+/**
+ * To switch between different URL schemes.
+ */
interface UrlGeneratorInterface
{
/**
@@ -9,5 +12,5 @@ interface UrlGeneratorInterface
* @param array $parameters
* @return string
*/
- public function to($path, $parameters = []);
+ public function link_to($path, $parameters = []);
}