Файл: vendor/laravel/framework/src/Illuminate/Support/Facades/Bus.php
Строк: 206
<?php
namespace IlluminateSupportFacades;
use IlluminateBusBatchRepository;
use IlluminateContractsBusDispatcher as BusDispatcherContract;
use IlluminateFoundationBusPendingChain;
use IlluminateSupportTestingFakesBusFake;
/**
* @method static mixed dispatch(mixed $command)
* @method static mixed dispatchSync(mixed $command, mixed $handler = null)
* @method static mixed dispatchNow(mixed $command, mixed $handler = null)
* @method static IlluminateBusBatch|null findBatch(string $batchId)
* @method static IlluminateBusPendingBatch batch(IlluminateSupportCollection|array|mixed $jobs)
* @method static IlluminateFoundationBusPendingChain chain(IlluminateSupportCollection|array $jobs)
* @method static bool hasCommandHandler(mixed $command)
* @method static bool|mixed getCommandHandler(mixed $command)
* @method static mixed dispatchToQueue(mixed $command)
* @method static void dispatchAfterResponse(mixed $command, mixed $handler = null)
* @method static IlluminateBusDispatcher pipeThrough(array $pipes)
* @method static IlluminateBusDispatcher map(array $map)
* @method static IlluminateSupportTestingFakesBusFake except(array|string $jobsToDispatch)
* @method static void assertDispatched(string|Closure $command, callable|int|null $callback = null)
* @method static void assertDispatchedTimes(string|Closure $command, int $times = 1)
* @method static void assertNotDispatched(string|Closure $command, callable|null $callback = null)
* @method static void assertNothingDispatched()
* @method static void assertDispatchedSync(string|Closure $command, callable|int|null $callback = null)
* @method static void assertDispatchedSyncTimes(string|Closure $command, int $times = 1)
* @method static void assertNotDispatchedSync(string|Closure $command, callable|null $callback = null)
* @method static void assertDispatchedAfterResponse(string|Closure $command, callable|int|null $callback = null)
* @method static void assertDispatchedAfterResponseTimes(string|Closure $command, int $times = 1)
* @method static void assertNotDispatchedAfterResponse(string|Closure $command, callable|null $callback = null)
* @method static void assertChained(array $expectedChain)
* @method static void assertDispatchedWithoutChain(string|Closure $command, callable|null $callback = null)
* @method static IlluminateSupportTestingFakesChainedBatchTruthTest chainedBatch(Closure $callback)
* @method static void assertBatched(callable $callback)
* @method static void assertBatchCount(int $count)
* @method static void assertNothingBatched()
* @method static IlluminateSupportCollection dispatched(string $command, callable|null $callback = null)
* @method static IlluminateSupportCollection dispatchedSync(string $command, callable|null $callback = null)
* @method static IlluminateSupportCollection dispatchedAfterResponse(string $command, callable|null $callback = null)
* @method static IlluminateSupportCollection batched(callable $callback)
* @method static bool hasDispatched(string $command)
* @method static bool hasDispatchedSync(string $command)
* @method static bool hasDispatchedAfterResponse(string $command)
* @method static IlluminateBusBatch dispatchFakeBatch(string $name = '')
* @method static IlluminateBusBatch recordPendingBatch(IlluminateBusPendingBatch $pendingBatch)
* @method static IlluminateSupportTestingFakesBusFake serializeAndRestore(bool $serializeAndRestore = true)
*
* @see IlluminateBusDispatcher
* @see IlluminateSupportTestingFakesBusFake
*/
class Bus extends Facade
{
/**
* Replace the bound instance with a fake.
*
* @param array|string $jobsToFake
* @param IlluminateBusBatchRepository|null $batchRepository
* @return IlluminateSupportTestingFakesBusFake
*/
public static function fake($jobsToFake = [], ?BatchRepository $batchRepository = null)
{
$actualDispatcher = static::isFake()
? static::getFacadeRoot()->dispatcher
: static::getFacadeRoot();
return tap(new BusFake($actualDispatcher, $jobsToFake, $batchRepository), function ($fake) {
static::swap($fake);
});
}
/**
* Dispatch the given chain of jobs.
*
* @param array|mixed $jobs
* @return IlluminateFoundationBusPendingDispatch
*/
public static function dispatchChain($jobs)
{
$jobs = is_array($jobs) ? $jobs : func_get_args();
return (new PendingChain(array_shift($jobs), $jobs))
->dispatch();
}
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return BusDispatcherContract::class;
}
}