This repository has been archived on 2025-03-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Recetero/app/Providers/AppServiceProvider.php
2025-02-20 01:41:39 -03: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
{
//
}
}