mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-27 02:36:06 +01:00
48 lines
1.1 KiB
PHP
48 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Support\Facades\Blade;
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
use Laravel\Passport\Console\ClientCommand;
|
|
use Laravel\Passport\Console\InstallCommand;
|
|
use Laravel\Passport\Console\KeysCommand;
|
|
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Bootstrap any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
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);
|
|
|
|
JsonResource::withoutWrapping();
|
|
|
|
$this->commands([
|
|
InstallCommand::class,
|
|
ClientCommand::class,
|
|
KeysCommand::class,
|
|
]);
|
|
}
|
|
}
|