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: BatchFactory.php
<?php namespace Illuminate\Bus; use Carbon\CarbonImmutable; use Illuminate\Contracts\Queue\Factory as QueueFactory; class BatchFactory { /** * The queue factory implementation. * * @var \Illuminate\Contracts\Queue\Factory */ protected $queue; /** * Create a new batch factory instance. * * @param \Illuminate\Contracts\Queue\Factory $queue * @return void */ public function __construct(QueueFactory $queue) { $this->queue = $queue; } /** * Create a new batch instance. * * @param \Illuminate\Bus\BatchRepository $repository * @param string $id * @param string $name * @param int $totalJobs * @param int $pendingJobs * @param int $failedJobs * @param array $failedJobIds * @param array $options * @param \Carbon\CarbonImmutable $createdAt * @param \Carbon\CarbonImmutable|null $cancelledAt * @param \Carbon\CarbonImmutable|null $finishedAt * @return \Illuminate\Bus\Batch */ public function make(BatchRepository $repository, string $id, string $name, int $totalJobs, int $pendingJobs, int $failedJobs, array $failedJobIds, array $options, CarbonImmutable $createdAt, ?CarbonImmutable $cancelledAt, ?CarbonImmutable $finishedAt) { return new Batch($this->queue, $repository, $id, $name, $totalJobs, $pendingJobs, $failedJobs, $failedJobIds, $options, $createdAt, $cancelledAt, $finishedAt); } }
Upload File
Create Folder