public static function jobClassDoesNotExist(string $jobClass, WebhookCall $webhookCall)
11
{
12
return new static("Could not process webhook id `{$webhookCall->id}` of type `{$webhookCall->type} because the configured jobclass `$jobClass` does not exist.");
13
}
14
15
public static function missingType(WebhookCall $webhookCall)
16
{
17
return new static("Webhook call id `{$webhookCall->id}` did not contain a type. Valid Stripe webhook calls should always contain a type.");
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.