X7ROOT File Manager
Current Path:
/home/prisjneg/public_html/vendor/laravel/framework/src/Illuminate/Bus
home
/
prisjneg
/
public_html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Bus
/
📁
..
📄
Batch.php
(12.66 KB)
📄
BatchFactory.php
(1.71 KB)
📄
BatchRepository.php
(2.16 KB)
📄
Batchable.php
(2.76 KB)
📄
BusServiceProvider.php
(3.25 KB)
📄
ChainedBatch.php
(3.71 KB)
📄
DatabaseBatchRepository.php
(10.88 KB)
📄
Dispatcher.php
(7.7 KB)
📄
DynamoBatchRepository.php
(14.86 KB)
📁
Events
📄
LICENSE.md
(1.05 KB)
📄
PendingBatch.php
(9.26 KB)
📄
PrunableBatchRepository.php
(318 B)
📄
Queueable.php
(6.18 KB)
📄
UniqueLock.php
(1.68 KB)
📄
UpdatedBatchJobCounts.php
(856 B)
📄
composer.json
(998 B)
Editing: BatchRepository.php
<?php namespace Illuminate\Bus; use Closure; /** * @method void rollBack() */ interface BatchRepository { /** * Retrieve a list of batches. * * @param int $limit * @param mixed $before * @return \Illuminate\Bus\Batch[] */ public function get($limit, $before); /** * Retrieve information about an existing batch. * * @param string $batchId * @return \Illuminate\Bus\Batch|null */ public function find(string $batchId); /** * Store a new pending batch. * * @param \Illuminate\Bus\PendingBatch $batch * @return \Illuminate\Bus\Batch */ public function store(PendingBatch $batch); /** * Increment the total number of jobs within the batch. * * @param string $batchId * @param int $amount * @return void */ public function incrementTotalJobs(string $batchId, int $amount); /** * Decrement the total number of pending jobs for the batch. * * @param string $batchId * @param string $jobId * @return \Illuminate\Bus\UpdatedBatchJobCounts */ public function decrementPendingJobs(string $batchId, string $jobId); /** * Increment the total number of failed jobs for the batch. * * @param string $batchId * @param string $jobId * @return \Illuminate\Bus\UpdatedBatchJobCounts */ public function incrementFailedJobs(string $batchId, string $jobId); /** * Mark the batch that has the given ID as finished. * * @param string $batchId * @return void */ public function markAsFinished(string $batchId); /** * Cancel the batch that has the given ID. * * @param string $batchId * @return void */ public function cancel(string $batchId); /** * Delete the batch that has the given ID. * * @param string $batchId * @return void */ public function delete(string $batchId); /** * Execute the given Closure within a storage specific transaction. * * @param \Closure $callback * @return mixed */ public function transaction(Closure $callback); }
Upload File
Create Folder