Initial commit

This commit is contained in:
2025-12-20 15:43:22 +01:00
commit c693f7c7ed
127 changed files with 17921 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?php
namespace App\Providers;
use App\Services\RiksdagenService;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
$this->app->bind(RiksdagenService::class, function () {
return new RiksdagenService();
});
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
//
}
}