Files
theme-park-app/app/Providers/AppServiceProvider.php

26 lines
420 B
PHP
Raw Normal View History

2024-08-20 21:08:23 +02:00
<?php
namespace App\Providers;
use App\Http\Services\PhantasialandApi;
use App\Models\ThemeParkUser;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
}
}