Total Complexity | 6 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | abstract class CustomExport implements WithEvents |
||
11 | { |
||
12 | use Exportable, HasFileModel, WithNotification; |
||
13 | |||
14 | public static function key(): string |
||
15 | { |
||
16 | return class_basename(static::class); |
||
17 | } |
||
18 | |||
19 | public static function name(): string |
||
22 | } |
||
23 | |||
24 | public static function queueName(): ?string |
||
25 | { |
||
26 | return config('nova-export-configuration.defaults.queue'); |
||
27 | } |
||
28 | |||
29 | public static function diskName(): ?string |
||
32 | } |
||
33 | |||
34 | public function registerEvents(): array |
||
41 | } |
||
42 | }, |
||
46 |