You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
314 B
PHTML
15 lines
314 B
PHTML
7 years ago
|
<?php
|
||
|
|
||
6 years ago
|
namespace Engelsystem\Http;
|
||
7 years ago
|
|
||
|
use Engelsystem\Container\ServiceProvider;
|
||
|
|
||
6 years ago
|
class UrlGeneratorServiceProvider extends ServiceProvider
|
||
7 years ago
|
{
|
||
|
public function register()
|
||
|
{
|
||
|
$urlGenerator = $this->app->make(UrlGenerator::class);
|
||
6 years ago
|
$this->app->instance('http.urlGenerator', $urlGenerator);
|
||
7 years ago
|
}
|
||
|
}
|