Files
ecowitt2weewx/app/Providers/AppServiceProvider.php
Jeremias Wolff 8c266b5841 upgrade to 10.x
2023-04-18 20:40:09 +02:00

25 lines
361 B
PHP

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