Skip to content

Commit

Permalink
Added empty ServiceProvider
Browse files Browse the repository at this point in the history
  • Loading branch information
TomHAnderson committed Jan 20, 2022
1 parent e351d20 commit 7faad27
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/ServiceProvider.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

declare(strict_types=1);

namespace ApiSkeletons\Laravel\ApiProblem;

use Illuminate\Support\ServiceProvider as LaravelServiceProvider;

class ServiceProvider extends LaravelServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
}

/**
* Bootstrap any application services.
*/
public function boot(): void
{
}
}

0 comments on commit 7faad27

Please sign in to comment.