Skip to content

Commit

Permalink
rearrange sp
Browse files Browse the repository at this point in the history
  • Loading branch information
repl6669 committed Nov 7, 2023
1 parent 48c1f3d commit b2cdc99
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/LunarApiStripeAdapterServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@

class LunarApiStripeAdapterServiceProvider extends ServiceProvider
{
/**
* Register the application services.
*/
public function register(): void
{
// Automatically apply the package configuration
$this->mergeConfigFrom(__DIR__.'/../config/stripe.php', 'lunar-api.stripe');
}

/**
* Bootstrap the application services.
*/
Expand All @@ -26,13 +35,4 @@ public function boot(): void
], 'lunar-api.stripe.config');
}
}

/**
* Register the application services.
*/
public function register(): void
{
// Automatically apply the package configuration
$this->mergeConfigFrom(__DIR__.'/../config/stripe.php', 'lunar-api.stripe');
}
}

0 comments on commit b2cdc99

Please sign in to comment.