bozzemagiche/app/Providers/FortifyServiceProvider.php
2025-09-14 18:41:00 +02:00

25 lines
370 B
PHP

<?php
namespace Vanguard\Providers;
use Illuminate\Support\ServiceProvider;
class FortifyServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
//
}
}