Файл: vendor/laravel/framework/src/Illuminate/Support/Facades/Bus.php
Строк: 194
<?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 void except(array|string $jobsToDispatch)
* @method static void assertDispatched(string|Closure $command, callable|int|null $callback = null)
* @method static void assertDispatchedTimes(string $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 $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 $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 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)
*
* @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)
{
static::swap($fake = new BusFake(static::getFacadeRoot(), $jobsToFake, $batchRepository));
return $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;
}
}