1 | <?php |
||
8 | class StripeWebhookCall extends Model |
||
9 | { |
||
10 | public $guarded = []; |
||
11 | |||
12 | protected $casts = [ |
||
13 | 'payload' => 'array', |
||
14 | 'exception' => 'array', |
||
15 | ]; |
||
16 | |||
17 | public function process() |
||
29 | |||
30 | protected function determineJobClass(string $eventType): string |
||
36 | |||
37 | protected function clearException() { |
||
44 | |||
45 | protected function saveException(Exception $exception) |
||
57 | } |
||
58 |