File manager - Edit - /var/www/payraty/helpdesk/vendor/laravel/fortify/src/Console/InstallCommand.php
Back
<?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); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings