return new static("`{$invalidSignatureValidator}` is not a valid signature validator class. A valid signature validator is a class that implements `{$signatureValidatorInterface}`.");
23
}
24
25
public static function invalidWebhookProfile(string $webhookProfile): InvalidConfig
26
{
27
$webhookProfileInterface = WebhookProfile::class;
28
29
return new static("`{$webhookProfile}` is not a valid webhook profile class. A valid web hook profile is a class that implements `{$webhookProfileInterface}`.");
30
}
31
32
public static function invalidWebhookResponse(string $webhookResponse): InvalidConfig
return new static("`{$webhookResponse}` is not a valid webhook response class. A valid webhook response is a class that implements `{$webhookResponseInterface}`.");
37
}
38
39
public static function invalidProcessWebhookJob(string $processWebhookJob): InvalidConfig