2FAuth/app/Providers/AppServiceProvider.php

48 lines
1.1 KiB
PHP
Raw Normal View History

2019-05-20 07:37:41 +02:00
<?php
namespace App\Providers;
2020-10-12 08:05:33 +02:00
use Illuminate\Support\Facades\Blade;
use Illuminate\Support\Facades\Schema;
2019-05-20 07:37:41 +02:00
use Illuminate\Support\ServiceProvider;
2021-09-17 23:50:00 +02:00
use Illuminate\Http\Resources\Json\JsonResource;
use Laravel\Passport\Console\ClientCommand;
use Laravel\Passport\Console\InstallCommand;
use Laravel\Passport\Console\KeysCommand;
2019-05-20 07:37:41 +02:00
2020-10-12 08:05:33 +02:00
2019-05-20 07:37:41 +02:00
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
2020-10-12 08:05:33 +02:00
Blade::withoutComponentTags();
// Limited to 191 to prevent index length issue with MyISAM and utf8mb4_unicode_ci
// when using WAMP (WAMP uses MyISAM as default engine in place of INNOdb)
Schema::defaultStringLength(191);
2021-09-17 23:50:00 +02:00
JsonResource::withoutWrapping();
$this->commands([
InstallCommand::class,
ClientCommand::class,
KeysCommand::class,
]);
2019-05-20 07:37:41 +02:00
}
}