Skip to content

Commit

Permalink
Merge branch 'master' of github.com:spatie/laravel-stripe-webhooks
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Feb 8, 2018
2 parents 56c64fe + 28f7ccb commit 950d25e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Exceptions/WebhookFailed.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public static function missingSignature()

public static function invalidSignature($signature)
{
return new static("The signature `{$signature}` found in the header named `Stripe-Signature` is invalid. Make sure that the `services.stripe.webhook_signing_secret` config key is set to the value you found on the Stripe dashboard. If you are caching your config try running `php artisan clear:cache` to resolve the problem.");
return new static("The signature `{$signature}` found in the header named `Stripe-Signature` is invalid. Make sure that the `services.stripe.webhook_signing_secret` config key is set to the value you found on the Stripe dashboard. If you are caching your config try running `php artisan cache:clear` to resolve the problem.");
}

public static function signingSecretNotSet()
Expand Down

0 comments on commit 950d25e

Please sign in to comment.