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/Http | |
parent | b0e7bc0df2eb4975223582089c7a928903e8cd14 (diff) |
Renamed RoutingServiceProvider to Http\UrlGeneratorServiceProvider
Diffstat (limited to 'src/Http')
-rw-r--r-- | src/Http/UrlGenerator.php | 25 | ||||
-rw-r--r-- | src/Http/UrlGeneratorServiceProvider.php | 14 |
2 files changed, 39 insertions, 0 deletions
diff --git a/src/Http/UrlGenerator.php b/src/Http/UrlGenerator.php new file mode 100644 index 00000000..132fefc7 --- /dev/null +++ b/src/Http/UrlGenerator.php @@ -0,0 +1,25 @@ +<?php + +namespace Engelsystem\Http; + +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; + } +} diff --git a/src/Http/UrlGeneratorServiceProvider.php b/src/Http/UrlGeneratorServiceProvider.php new file mode 100644 index 00000000..37304076 --- /dev/null +++ b/src/Http/UrlGeneratorServiceProvider.php @@ -0,0 +1,14 @@ +<?php + +namespace Engelsystem\Http; + +use Engelsystem\Container\ServiceProvider; + +class UrlGeneratorServiceProvider extends ServiceProvider +{ + public function register() + { + $urlGenerator = $this->app->make(UrlGenerator::class); + $this->app->instance('http.urlGenerator', $urlGenerator); + } +} |