| Total Complexity | 6 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | abstract class CustomExport implements WithEvents |
||
| 15 | { |
||
| 16 | use Exportable, HasFileModel, WithNotification; |
||
| 17 | |||
| 18 | 3 | public static function key(): string |
|
| 19 | { |
||
| 20 | 3 | return class_basename(static::class); |
|
| 21 | } |
||
| 22 | |||
| 23 | 3 | public static function name(): string |
|
| 26 | } |
||
| 27 | |||
| 28 | 1 | public static function queueName(): ?string |
|
| 29 | { |
||
| 30 | 1 | return config('nova-resource-dynamic-export.defaults.queue'); |
|
| 31 | } |
||
| 32 | |||
| 33 | 1 | public static function diskName(): ?string |
|
| 36 | } |
||
| 37 | |||
| 38 | 1 | public function registerEvents(): array |
|
| 45 | } |
||
| 46 | 1 | }, |
|
| 50 |