Files
libra/app/Providers/AppServiceProvider.php
T
Naser Mansour ff83974f4a First commit
2025-12-20 20:26:03 +02:00

25 lines
361 B
PHP

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