diff options
Diffstat (limited to 'src/Routing/UrlGenerator.php')
-rw-r--r-- | src/Routing/UrlGenerator.php | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/Routing/UrlGenerator.php b/src/Routing/UrlGenerator.php deleted file mode 100644 index 188bac3b..00000000 --- a/src/Routing/UrlGenerator.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Engelsystem\Routing; - -/** - * Provides urls when rewriting on the webserver is enabled. (default) - * - * The urls have the form <app url>/<path>?<parameters> - */ -class UrlGenerator implements UrlGeneratorInterface -{ - /** - * @param string $path - * @param array $parameters - * @return string url in the form [app url]/[path]?[parameters] - */ - public function linkTo($path, $parameters = []) - { - $path = '/' . ltrim($path, '/'); - $request = app('request'); - $uri = $request->getUriForPath($path); - - if (!empty($parameters) && is_array($parameters)) { - $parameters = http_build_query($parameters); - $uri .= '?' . $parameters; - } - - return $uri; - } -} |