1 | <?php |
||
9 | class StripeWebhookCall extends Model |
||
10 | { |
||
11 | public $guarded = []; |
||
12 | |||
13 | protected $casts = [ |
||
14 | 'payload' => 'array', |
||
15 | 'exception' => 'array', |
||
16 | ]; |
||
17 | |||
18 | public function process() |
||
40 | |||
41 | public function saveException(Exception $exception) |
||
53 | |||
54 | protected function determineJobClass(string $eventType): string |
||
60 | |||
61 | protected function clearException() { |
||
68 | } |
||
69 |
This check looks for function calls that miss required arguments.