Something went wrong. Try again.
[READ-ONLY] Mirror of https://github.com/okikio/aiscode.
Something went wrong. Try again.
123456789101112131415161718192021222324252627282930<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;use Illuminate\Support\Facades\Schema;use Illuminate\Support\Facades\URL;
class AppServiceProvider extends ServiceProvider{ /** * Register any application services. */ public function register(): void { // }
/** * Bootstrap any application services. */ public function boot(): void { Schema::defaultStringLength(191); if($this->app->environment('production')) { URL::forceScheme('https'); } }}