summaryrefslogtreecommitdiff
path: root/src/Routing/LegacyUrlGenerator.php
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2018-08-06 12:57:48 +0200
committermsquare <msquare@notrademark.de>2018-08-06 12:57:48 +0200
commit9496e3571168feff780f6efb17ddc00c670e2dee (patch)
tree7313a4fecc2da111a199e727b12e88346d5db230 /src/Routing/LegacyUrlGenerator.php
parent86b29370786de35cc40e3424e09c3cf48551ee28 (diff)
added comments and renamed short method to url generators
Diffstat (limited to 'src/Routing/LegacyUrlGenerator.php')
-rw-r--r--src/Routing/LegacyUrlGenerator.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Routing/LegacyUrlGenerator.php b/src/Routing/LegacyUrlGenerator.php
index e2434e1f..4c1e736b 100644
--- a/src/Routing/LegacyUrlGenerator.php
+++ b/src/Routing/LegacyUrlGenerator.php
@@ -14,7 +14,7 @@ class LegacyUrlGenerator extends UrlGenerator
* @param array $parameters
* @return string urls in the form <app url>/index.php?p=<path>&<parameters>
*/
- public function link_to($path, $parameters = [])
+ public function linkTo($path, $parameters = [])
{
$page = ltrim($path, '/');
if (!empty($page)) {
@@ -22,7 +22,7 @@ class LegacyUrlGenerator extends UrlGenerator
$parameters = array_merge(['p' => $page], $parameters);
}
- $uri = parent::link_to('index.php', $parameters);
+ $uri = parent::linkTo('index.php', $parameters);
$uri = preg_replace('~(/index\.php)+~', '/index.php', $uri);
return $uri;