Files
website/app/Providers/AppServiceProvider.php
2026-03-23 14:59:38 +01:00

28 lines
460 B
PHP

<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
//
if(config('app.env') === 'production') {
\URL::forceScheme('https');
}
}
}