diff options
author | Igor Scheller <igor.scheller@igorshp.de> | 2018-08-22 03:10:08 +0200 |
---|---|---|
committer | Igor Scheller <igor.scheller@igorshp.de> | 2018-08-22 03:10:08 +0200 |
commit | 73c9d923e7cc77847cfcbff4b90ad4815699a4fa (patch) | |
tree | 76000712338c18a37a433b365cd32a72de2b1805 /src/Routing/UrlGenerator.php | |
parent | b0e7bc0df2eb4975223582089c7a928903e8cd14 (diff) |
Renamed RoutingServiceProvider to Http\UrlGeneratorServiceProvider
Diffstat (limited to 'src/Routing/UrlGenerator.php')
-rw-r--r-- | src/Routing/UrlGenerator.php | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/Routing/UrlGenerator.php b/src/Routing/UrlGenerator.php deleted file mode 100644 index 6df52425..00000000 --- a/src/Routing/UrlGenerator.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Engelsystem\Routing; - -class UrlGenerator -{ - /** - * @param string $path - * @param array $parameters - * @return string - */ - public function to($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; - } -} |