mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
20 lines
404 B
PHP
20 lines
404 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
public function register()
|
|
{
|
|
//
|
|
}
|
|
|
|
public function boot()
|
|
{
|
|
// Add following lines to force laravel to use APP_URL as root url for the app.
|
|
$strBaseURL = $this->app['url'];
|
|
$strBaseURL->forceRootUrl(config('app.url'));
|
|
}
|
|
}
|