| 123456789101112131415161718 |
- <?php
- namespace App\Jobs;
- use App\Services\ParceirosImportService;
- class SyncParceirosJob extends BaseImportJob
- {
- protected function getImportType(): string
- {
- return 'parceiro';
- }
- protected function runSync(string $filePath): array
- {
- return app(ParceirosImportService::class)->syncFromExcel($filePath);
- }
- }
|