Skip to content

Commit

Permalink
Forcing string to be returned from config secret provider.
Browse files Browse the repository at this point in the history
  • Loading branch information
telkins committed Feb 9, 2018
1 parent 635be23 commit 25e4f28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Webhooks/SecretProviders/ConfigSecretProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ class ConfigSecretProvider implements SecretProviderContract
{
public function getSecret(string $domain) : string
{
return config('shopify.webhook_secret');
return (string) config('shopify.webhook_secret');
}
}

0 comments on commit 25e4f28

Please sign in to comment.