Skip to content

Commit

Permalink
Refactor service provider imports in TestCase for improved readability
Browse files Browse the repository at this point in the history
  • Loading branch information
tdwesten committed Jan 30, 2025
1 parent 2ca9173 commit 37902ad
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

namespace Pixelpillow\LunarApiMollieAdapter\Tests;

use Dystcz\LunarApi\JsonApiServiceProvider;
use Dystcz\LunarApi\LunarApiServiceProvider;
use Illuminate\Contracts\Debug\ExceptionHandler;
use Illuminate\Foundation\Application;
use Illuminate\Foundation\Bootstrap\LoadEnvironmentVariables;
Expand Down Expand Up @@ -113,8 +115,8 @@ protected function getPackageProviders($app): array
\Livewire\LivewireServiceProvider::class,

// Dystore API
\Dystcz\LunarApi\ApiServiceProvider::class,
\Dystcz\LunarApi\JsonApiServiceProvider::class,
LunarApiServiceProvider::class,
JsonApiServiceProvider::class,

// Lunar API Mollie Adapter
\Pixelpillow\LunarApiMollieAdapter\LunarApiMollieAdapterServiceProvider::class,
Expand Down

0 comments on commit 37902ad

Please sign in to comment.