You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/app/Providers/AppServiceProvider.php

32 lines
553 B

6 years ago
<?php
namespace App\Providers;
4 years ago
use App\Services\MorphModelFinder;
4 years ago
use Illuminate\Support\Facades\Schema;
6 years ago
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
4 years ago
app(MorphModelFinder::class)->map();
4 years ago
Schema::defaultStringLength(191);
6 years ago
}
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
}