Files
firefly-iii/app/Providers/AppServiceProvider.php

46 lines
845 B
PHP
Raw Normal View History

<?php
/**
* AppServiceProvider.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
declare(strict_types=1);
namespace FireflyIII\Providers;
2015-02-06 04:39:52 +01:00
use Illuminate\Support\ServiceProvider;
use URL;
use Illuminate\Support\Facades\Schema;
2016-04-25 18:43:09 +02:00
/**
* Class AppServiceProvider
*
* @package FireflyIII\Providers
*/
2015-02-11 07:35:10 +01:00
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
Schema::defaultStringLength(191);
2015-02-11 07:35:10 +01:00
}
2015-02-06 04:39:52 +01:00
2015-02-11 07:35:10 +01:00
/**
* Register any application services.
*
* @return void
*/
public function register()
{
}
2015-02-06 04:39:52 +01:00
}