<?php
namespace Illuminate\Bus;
use Carbon\CarbonImmutable;
use Illuminate\Contracts\Queue\Factory as QueueFactory;
class BatchFactory
{
protected $queue;
public function __construct(QueueFactory $queue)
{
$this->queue = $queue;
}
public function make(BatchRepository $repository,
string $id,