| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public static function invalidWebhookResponse(string $webhookResponse): InvalidConfig |
||
| 33 | { |
||
| 34 | $webhookResponseInterface = RespondsToWebhook::class; |
||
| 35 | |||
| 36 | return new static("`{$webhookResponse}` is not a valid webhook response class. A valid webhook response is a class that implements `{$webhookResponseInterface}`."); |
||
| 37 | } |
||
| 38 | |||
| 46 |