summaryrefslogtreecommitdiff
path: root/src/Routing/RoutingServiceProvider.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Routing/RoutingServiceProvider.php')
-rw-r--r--src/Routing/RoutingServiceProvider.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/Routing/RoutingServiceProvider.php b/src/Routing/RoutingServiceProvider.php
deleted file mode 100644
index beaa6a94..00000000
--- a/src/Routing/RoutingServiceProvider.php
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-namespace Engelsystem\Routing;
-
-use Engelsystem\Container\ServiceProvider;
-
-/**
- * Registers the url generator depending on config.
- */
-class RoutingServiceProvider extends ServiceProvider
-{
-
- public function register()
- {
- $config = $this->app->get('config');
- $class = UrlGenerator::class;
- if (! $config->get('rewrite_urls', true)) {
- $class = LegacyUrlGenerator::class;
- }
-
- $urlGenerator = $this->app->make($class);
- $this->app->instance('routing.urlGenerator', $urlGenerator);
- $this->app->bind(UrlGeneratorInterface::class, 'routing.urlGenerator');
- }
-}