summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Routing/LegacyUrlGenerator.php4
-rw-r--r--src/Routing/UrlGenerator.php2
-rw-r--r--src/Routing/UrlGeneratorInterface.php2
-rw-r--r--src/helpers.php2
4 files changed, 5 insertions, 5 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;
diff --git a/src/Routing/UrlGenerator.php b/src/Routing/UrlGenerator.php
index a8fc88c1..188bac3b 100644
--- a/src/Routing/UrlGenerator.php
+++ b/src/Routing/UrlGenerator.php
@@ -14,7 +14,7 @@ class UrlGenerator implements UrlGeneratorInterface
* @param array $parameters
* @return string url in the form [app url]/[path]?[parameters]
*/
- public function link_to($path, $parameters = [])
+ public function linkTo($path, $parameters = [])
{
$path = '/' . ltrim($path, '/');
$request = app('request');
diff --git a/src/Routing/UrlGeneratorInterface.php b/src/Routing/UrlGeneratorInterface.php
index 17385bc2..f1a8ffed 100644
--- a/src/Routing/UrlGeneratorInterface.php
+++ b/src/Routing/UrlGeneratorInterface.php
@@ -12,5 +12,5 @@ interface UrlGeneratorInterface
* @param array $parameters
* @return string
*/
- public function link_to($path, $parameters = []);
+ public function linkTo($path, $parameters = []);
}
diff --git a/src/helpers.php b/src/helpers.php
index 8b1f0cee..8d8f74e1 100644
--- a/src/helpers.php
+++ b/src/helpers.php
@@ -124,7 +124,7 @@ function url($path = null, $parameters = [])
return $urlGenerator;
}
- return $urlGenerator->link_to($path, $parameters);
+ return $urlGenerator->linkTo($path, $parameters);
}
/**