/home/techb158/dev.balacoffee.com/vendor/laravel/framework/src/Illuminate/Bus
NameSizeModeActions
Events/-0755rm
Batch.php121750644editdlrm
Batchable.php9550644editdlrm
BatchFactory.php17480644editdlrm
BatchRepository.php21770644editdlrm
BusServiceProvider.php19670644editdlrm
composer.json9980644editdlrm
DatabaseBatchRepository.php98750644editdlrm
Dispatcher.php78210644editdlrm
LICENSE.md10750644editdlrm
PendingBatch.php59550644editdlrm
PrunableBatchRepository.php3180644editdlrm
Queueable.php54220644editdlrm
UniqueLock.php10820644editdlrm
UpdatedBatchJobCounts.php8560644editdlrm
Edit: /home/techb158/dev.balacoffee.com/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; } }