add: full multi-tenancy control

This commit is contained in:
Cauê Faleiros
2026-02-02 15:31:15 -03:00
commit c6ec92802b
1711 changed files with 258106 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
<?php
namespace Webkul\DataTransfer\Jobs\Import;
use Illuminate\Bus\Batchable;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use Webkul\DataTransfer\Helpers\Import as ImportHelper;
class IndexBatch implements ShouldQueue
{
use Batchable, Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/**
* Create a new job instance.
*
* @param mixed $importBatch
* @return void
*/
public function __construct(protected $importBatch)
{
$this->importBatch = $importBatch;
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
$typeImported = app(ImportHelper::class)
->setImport($this->importBatch->import)
->getTypeImporter();
$typeImported->indexBatch($this->importBatch);
}
}