phpvms/app/Providers/AppServiceProvider.php

29 lines
521 B
PHP
Raw Normal View History

2017-06-09 02:28:26 +08:00
<?php
namespace App\Providers;
use Log;
use Illuminate\Support\Facades\Schema;
2017-06-09 02:28:26 +08:00
use Illuminate\Support\ServiceProvider;
use App\Repositories\SettingRepository;
2017-06-09 02:28:26 +08:00
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*/
public function boot()
{
Schema::defaultStringLength(191);
$this->app->bind('setting', SettingRepository::class);
2017-06-09 02:28:26 +08:00
}
/**
* Register any application services.
*/
public function register()
{
2017-06-09 02:28:26 +08:00
}
}