Skip to content

Commit

Permalink
Merge pull request #1 from squiaios/patch-1
Browse files Browse the repository at this point in the history
Fix parameters order
  • Loading branch information
beeyev authored Dec 1, 2022
2 parents d54b3c1 + 8684660 commit 37e7ef3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Adapters/Laravel/ThumborServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function boot(): void
public function register(): void
{
$this->app->singleton(Thumbor::class, function() {
return new Thumbor(config('thumbor.security_key'), config('thumbor.base_url'));
return new Thumbor(config('thumbor.base_url'), config('thumbor.security_key'));
});
}

Expand Down

0 comments on commit 37e7ef3

Please sign in to comment.