ConsultancyProject1_Auslast.../scraper/app/Providers/AppServiceProvider.php

25 lines
361 B
PHP
Raw Normal View History

2024-03-23 10:05:14 +01:00
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
2024-05-07 21:31:03 +02:00
//
2024-03-23 10:05:14 +01:00
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
2024-05-07 21:31:03 +02:00
//
2024-03-23 10:05:14 +01:00
}
}