/var/www/cobraambalaj/vendor/laravel/framework/src/Illuminate/Bus
NameSizeModeActions
Events/-0755rm
Batch.php119800644editdlrm
Batchable.php9550644editdlrm
BatchFactory.php17480644editdlrm
BatchRepository.php21770644editdlrm
BusServiceProvider.php19450644editdlrm
composer.json9980644editdlrm
DatabaseBatchRepository.php92840644editdlrm
Dispatcher.php77800644editdlrm
LICENSE.md10750644editdlrm
PendingBatch.php53810644editdlrm
PrunableBatchRepository.php3180644editdlrm
Queueable.php55090644editdlrm
UpdatedBatchJobCounts.php8560644editdlrm
Edit: /var/www/cobraambalaj/vendor/laravel/framework/src/Illuminate/Bus/Batchable.php (955B)
batchId) { return Container::getInstance()->make(BatchRepository::class)->find($this->batchId); } } /** * Determine if the batch is still active and processing. * * @return bool */ public function batching() { $batch = $this->batch(); return $batch && ! $batch->cancelled(); } /** * Set the batch ID on the job. * * @param string $batchId * @return $this */ public function withBatchId(string $batchId) { $this->batchId = $batchId; return $this; } }