Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
45 | return $this; |
||
46 | } |
||
47 | |||
48 | protected function determineJobClass(string $eventType): string |
||
49 | { |
||
50 | $jobConfigKey = str_replace('.', '_', $eventType); |
||
51 | |||
52 | return config("stripe-webhooks.jobs.{$jobConfigKey}", ''); |
||
53 | } |
||
54 | |||
55 | protected function clearException() { |
||
56 | $this->exception = null; |
||
57 | |||
63 |
This check looks for function calls that miss required arguments.