2018-06-12 04:34:00 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
2019-01-17 10:05:44 +00:00
|
|
|
use Illuminate\Support\Facades\Schema;
|
2018-06-12 04:34:00 +00:00
|
|
|
|
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Bootstrap any application services.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function boot()
|
|
|
|
|
{
|
2019-01-17 10:05:44 +00:00
|
|
|
Schema::defaultStringLength(191);
|
2018-06-12 04:34:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Register any application services.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function register()
|
|
|
|
|
{
|
2018-11-19 11:34:13 +00:00
|
|
|
|
2018-06-12 04:34:00 +00:00
|
|
|
}
|
|
|
|
|
}
|