Skip to content

Commit

Permalink
Update config array
Browse files Browse the repository at this point in the history
  • Loading branch information
vinkla committed Aug 12, 2024
1 parent 5147290 commit 3417cde
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Providers/SwishServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ public function register(): void
$certificate = new Certificate(
clientPath: $app['config']['swish.certificates.client'],
passphrase: $app['config']['swish.certificates.password'],
rootPath: config('swish.certificates.root'),
signingPath: config('swish.certificates.signing'),
signingPassphrase: config('swish.certificates.signing_password')
rootPath: $app['config']['swish.certificates.root'],
signingPath: $app['config']['swish.certificates.signing'],
signingPassphrase: $app['config']['swish.certificates.signing_password])
);
return new Client($certificate, $app['config']['swish.endpoint']);
Expand Down

0 comments on commit 3417cde

Please sign in to comment.