ConsultancyProject1_Auslast.../scraper/app/Providers/AppServiceProvider.php

25 lines
420 B
PHP
Raw Normal View History

2024-03-23 10:05:14 +01:00
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\Schema;
2024-03-23 10:05:14 +01:00
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
Schema::defaultStringLength(191);
2024-03-23 10:05:14 +01:00
}
}