blob: b7db1383da36eb5626b678edbd3b2ddcf7f00fd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
namespace Engelsystem\Routing;
use Engelsystem\Container\ServiceProvider;
class RoutingServiceProvider extends ServiceProvider
{
public function register()
{
$urlGenerator = $this->app->make(UrlGenerator::class);
$this->app->instance('routing.urlGenerator', $urlGenerator);
}
}
|