SyncAfastamentosJob.php 384 B

123456789101112131415161718
  1. <?php
  2. namespace App\Jobs;
  3. use App\Services\AssociadoImportService;
  4. class SyncAfastamentosJob extends BaseImportJob
  5. {
  6. protected function getImportType(): string
  7. {
  8. return 'afastamento';
  9. }
  10. protected function runSync(string $filePath): array
  11. {
  12. return app(AssociadoImportService::class)->syncAfastamentosFromExcel($filePath, $this->userId);
  13. }
  14. }