class Bus extends Facade

Properties

static protected $app

The application instance being facaded.

from  Facade
static protected array $resolvedInstance

The resolved object instances.

from  Facade
static protected bool $cached

Indicates if the resolved instance should be cached.

from  Facade

Methods

static void
resolved(Closure $callback)

Run a Closure when the facade has been resolved.

from  Facade
static 
spy()

Convert the facade into a Mockery spy.

from  Facade
static 
partialMock()

Initiate a partial mock on the facade.

from  Facade
static 
shouldReceive()

Initiate a mock expectation on the facade.

from  Facade
static 
expects()

Initiate a mock expectation on the facade.

from  Facade
static 
createFreshMockInstance()

Create a fresh mock instance for the given class.

from  Facade
static 
createMock()

Create a fresh mock instance for the given class.

from  Facade
static bool
isMock()

Determines whether a mock is set as the instance of the facade.

from  Facade
static string|null
getMockableClass()

Get the mockable class for the bound instance.

from  Facade
static 
swap(mixed $instance)

Hotswap the underlying instance behind the facade.

from  Facade
static bool
isFake()

Determines whether a "fake" has been set as the facade instance.

from  Facade
static mixed
getFacadeRoot()

Get the root object behind the facade.

from  Facade
static string
getFacadeAccessor()

Get the registered name of the component.

static mixed
resolveFacadeInstance(string $name)

Resolve the facade root instance from the container.

from  Facade
static void
clearResolvedInstance(string|null $name = null)

Clear a resolved facade instance.

from  Facade
static void
clearResolvedInstances()

Clear all of the resolved instances.

from  Facade
static Collection
defaultAliases()

Get the application default aliases.

from  Facade
static 
getFacadeApplication()

Get the application instance behind the facade.

from  Facade
static void
setFacadeApplication(mixed $app)

Set the application instance.

from  Facade
static 
__callStatic(string $method, array $args)

Handle dynamic, static calls to the object.

from  Facade
static BusFake
fake(array|string $jobsToFake = [], BatchRepository|null $batchRepository = null)

Replace the bound instance with a fake.

static mixed
dispatchChain(mixed $jobs)

Dispatch the given chain of jobs.

static mixed
dispatch(mixed $command)

No description

static mixed
dispatchSync(mixed $command, mixed $handler = 'null')

No description

static mixed
dispatchNow(mixed $command, mixed $handler = 'null')

No description

static void
bulk(iterable $jobs)

No description

static Batch|null
findBatch(string $batchId)

No description

static PendingBatch
batch(mixed $jobs)

No description

static PendingChain
chain(mixed $jobs = 'null')

No description

static bool
hasCommandHandler(mixed $command)

No description

static bool|mixed
getCommandHandler(mixed $command)

No description

static mixed
dispatchToQueue(mixed $command)

No description

static void
dispatchAfterResponse(mixed $command, mixed $handler = 'null')

No description

static Dispatcher
pipeThrough(array $pipes)

No description

static Dispatcher
map(array $map)

No description

static Dispatcher
static Dispatcher
static string|null
resolveConnectionFromQueueRoute(object $queueable)

No description

static string|null
resolveQueueFromQueueRoute(object $queueable)

No description

static BusFake
except(array|string $jobsToDispatch)

No description

static void
assertDispatched(Closure|string $command, callable|int|null $callback = 'null')

No description

static void
assertDispatchedOnce(Closure|string $command)

No description

static void
assertDispatchedTimes(Closure|string $command, int $times = '1')

No description

static void
assertNotDispatched(Closure|string $command, callable|null $callback = 'null')

No description

static void
assertNothingDispatched()

No description

static void
assertDispatchedSync(Closure|string $command, callable|int|null $callback = 'null')

No description

static void
assertDispatchedSyncTimes(Closure|string $command, int $times = '1')

No description

static void
assertNotDispatchedSync(Closure|string $command, callable|null $callback = 'null')

No description

static void
assertDispatchedAfterResponse(Closure|string $command, callable|int|null $callback = 'null')

No description

static void
assertDispatchedAfterResponseTimes(Closure|string $command, int $times = '1')

No description

static void
assertNotDispatchedAfterResponse(Closure|string $command, callable|null $callback = 'null')

No description

static void
assertChained(array $expectedChain)

No description

static void
assertNothingChained()

No description

static void
assertDispatchedWithoutChain(Closure|string $command, callable|null $callback = 'null')

No description

chainedBatch(Closure $callback)

No description

static void
assertBatched(array|callable $callback)

No description

static void
assertBatchCount(int $count)

No description

static void
assertNothingBatched()

No description

static void
assertNothingPlaced()

No description

static Collection
dispatched(string $command, callable|null $callback = 'null')

No description

static Collection
dispatchedSync(string $command, callable|null $callback = 'null')

No description

static Collection
dispatchedAfterResponse(string $command, callable|null $callback = 'null')

No description

static Collection
batched(callable $callback)

No description

static bool
hasDispatched(string $command)

No description

static bool
hasDispatchedSync(string $command)

No description

static bool
hasDispatchedAfterResponse(string $command)

No description

static Batch
dispatchFakeBatch(string $name = '\'\'')

No description

static Batch
recordPendingBatch(PendingBatch $pendingBatch)

No description

static BusFake
serializeAndRestore(bool $serializeAndRestore = 'true')

No description

static array
dispatchedBatches()

No description

Details

in Facade at line 55
static void resolved(Closure $callback)

Run a Closure when the facade has been resolved.

Boot-only. The callback is registered on the worker-global container and runs for every subsequent resolution of the facade accessor.

Parameters

Closure $callback

Return Value

void

in Facade at line 71
static spy()

Convert the facade into a Mockery spy.

in Facade at line 89
static partialMock()

Initiate a partial mock on the facade.

Tests only. Swaps the resolved facade instance for the worker lifetime.

in Facade at line 105
static shouldReceive()

Initiate a mock expectation on the facade.

Tests only. Swaps the resolved facade instance for the worker lifetime.

in Facade at line 121
static expects()

Initiate a mock expectation on the facade.

Tests only. Swaps the resolved facade instance for the worker lifetime.

in Facade at line 135
static protected createFreshMockInstance()

Create a fresh mock instance for the given class.

in Facade at line 147
static protected createMock()

Create a fresh mock instance for the given class.

in Facade at line 157
static protected bool isMock()

Determines whether a mock is set as the instance of the facade.

Return Value

bool

in Facade at line 168
static protected string|null getMockableClass()

Get the mockable class for the bound instance.

Return Value

string|null

in Facade at line 184
static swap(mixed $instance)

Hotswap the underlying instance behind the facade.

Tests only. Replaces the worker-wide resolved facade instance and container binding; runtime use races across coroutines and changes every subsequent facade call.

Parameters

mixed $instance

in Facade at line 196
static bool isFake()

Determines whether a "fake" has been set as the facade instance.

Return Value

bool

in Facade at line 207
static mixed getFacadeRoot()

Get the root object behind the facade.

Return Value

mixed

at line 97
static protected string getFacadeAccessor()

Get the registered name of the component.

Return Value

string

in Facade at line 223
static protected mixed resolveFacadeInstance(string $name)

Resolve the facade root instance from the container.

Parameters

string $name

Return Value

mixed

in Facade at line 246
static void clearResolvedInstance(string|null $name = null)

Clear a resolved facade instance.

Boot or tests only. Clears a worker-wide facade cache entry; concurrent coroutines may still hold the previous resolved instance.

Parameters

string|null $name

Return Value

void

in Facade at line 257
static void clearResolvedInstances()

Clear all of the resolved instances.

Boot or tests only. Clears the worker-wide facade cache; concurrent coroutines may still hold previously resolved instances.

Return Value

void

in Facade at line 265
static Collection defaultAliases()

Get the application default aliases.

Return Value

Collection

in Facade at line 324
static getFacadeApplication()

Get the application instance behind the facade.

in Facade at line 337
static void setFacadeApplication(mixed $app)

Set the application instance.

Tests only. Replaces the worker-wide facade application reference; runtime use races across coroutines and breaks every facade lookup.

Parameters

mixed $app

Return Value

void

in Facade at line 347
static __callStatic(string $method, array $args)

Handle dynamic, static calls to the object.

Parameters

string $method
array $args

Exceptions

RuntimeException

at line 70
static BusFake fake(array|string $jobsToFake = [], BatchRepository|null $batchRepository = null)

Replace the bound instance with a fake.

Parameters

array|string $jobsToFake
BatchRepository|null $batchRepository

Return Value

BusFake

at line 86
static mixed dispatchChain(mixed $jobs)

Dispatch the given chain of jobs.

Parameters

mixed $jobs

Return Value

mixed

at line 65
static mixed dispatch(mixed $command)

No description

Parameters

mixed $command

Return Value

mixed

at line 65
static mixed dispatchSync(mixed $command, mixed $handler = 'null')

No description

Parameters

mixed $command
mixed $handler

Return Value

mixed

at line 65
static mixed dispatchNow(mixed $command, mixed $handler = 'null')

No description

Parameters

mixed $command
mixed $handler

Return Value

mixed

at line 65
static void bulk(iterable $jobs)

No description

Parameters

iterable $jobs

Return Value

void

at line 65
static Batch|null findBatch(string $batchId)

No description

Parameters

string $batchId

Return Value

Batch|null

at line 65
static PendingBatch batch(mixed $jobs)

No description

Parameters

mixed $jobs

Return Value

PendingBatch

at line 65
static PendingChain chain(mixed $jobs = 'null')

No description

Parameters

mixed $jobs

Return Value

PendingChain

at line 65
static bool hasCommandHandler(mixed $command)

No description

Parameters

mixed $command

Return Value

bool

at line 65
static bool|mixed getCommandHandler(mixed $command)

No description

Parameters

mixed $command

Return Value

bool|mixed

at line 65
static mixed dispatchToQueue(mixed $command)

No description

Parameters

mixed $command

Return Value

mixed

at line 65
static void dispatchAfterResponse(mixed $command, mixed $handler = 'null')

No description

Parameters

mixed $command
mixed $handler

Return Value

void

at line 65
static Dispatcher pipeThrough(array $pipes)

No description

Parameters

array $pipes

Return Value

Dispatcher

at line 65
static Dispatcher map(array $map)

No description

Parameters

array $map

Return Value

Dispatcher

at line 65
static Dispatcher withDispatchingAfterResponses()

No description

Return Value

Dispatcher

at line 65
static Dispatcher withoutDispatchingAfterResponses()

No description

Return Value

Dispatcher

at line 65
static string|null resolveConnectionFromQueueRoute(object $queueable)

No description

Parameters

object $queueable

Return Value

string|null

at line 65
static string|null resolveQueueFromQueueRoute(object $queueable)

No description

Parameters

object $queueable

Return Value

string|null

at line 65
static BusFake except(array|string $jobsToDispatch)

No description

Parameters

array|string $jobsToDispatch

Return Value

BusFake

at line 65
static void assertDispatched(Closure|string $command, callable|int|null $callback = 'null')

No description

Parameters

Closure|string $command
callable|int|null $callback

Return Value

void

at line 65
static void assertDispatchedOnce(Closure|string $command)

No description

Parameters

Closure|string $command

Return Value

void

at line 65
static void assertDispatchedTimes(Closure|string $command, int $times = '1')

No description

Parameters

Closure|string $command
int $times

Return Value

void

at line 65
static void assertNotDispatched(Closure|string $command, callable|null $callback = 'null')

No description

Parameters

Closure|string $command
callable|null $callback

Return Value

void

at line 65
static void assertNothingDispatched()

No description

Return Value

void

at line 65
static void assertDispatchedSync(Closure|string $command, callable|int|null $callback = 'null')

No description

Parameters

Closure|string $command
callable|int|null $callback

Return Value

void

at line 65
static void assertDispatchedSyncTimes(Closure|string $command, int $times = '1')

No description

Parameters

Closure|string $command
int $times

Return Value

void

at line 65
static void assertNotDispatchedSync(Closure|string $command, callable|null $callback = 'null')

No description

Parameters

Closure|string $command
callable|null $callback

Return Value

void

at line 65
static void assertDispatchedAfterResponse(Closure|string $command, callable|int|null $callback = 'null')

No description

Parameters

Closure|string $command
callable|int|null $callback

Return Value

void

at line 65
static void assertDispatchedAfterResponseTimes(Closure|string $command, int $times = '1')

No description

Parameters

Closure|string $command
int $times

Return Value

void

at line 65
static void assertNotDispatchedAfterResponse(Closure|string $command, callable|null $callback = 'null')

No description

Parameters

Closure|string $command
callable|null $callback

Return Value

void

at line 65
static void assertChained(array $expectedChain)

No description

Parameters

array $expectedChain

Return Value

void

at line 65
static void assertNothingChained()

No description

Return Value

void

at line 65
static void assertDispatchedWithoutChain(Closure|string $command, callable|null $callback = 'null')

No description

Parameters

Closure|string $command
callable|null $callback

Return Value

void

at line 65
static ChainedBatchTruthTest chainedBatch(Closure $callback)

No description

Parameters

Closure $callback

Return Value

ChainedBatchTruthTest

at line 65
static void assertBatched(array|callable $callback)

No description

Parameters

array|callable $callback

Return Value

void

at line 65
static void assertBatchCount(int $count)

No description

Parameters

int $count

Return Value

void

at line 65
static void assertNothingBatched()

No description

Return Value

void

at line 65
static void assertNothingPlaced()

No description

Return Value

void

at line 65
static Collection dispatched(string $command, callable|null $callback = 'null')

No description

Parameters

string $command
callable|null $callback

Return Value

Collection

at line 65
static Collection dispatchedSync(string $command, callable|null $callback = 'null')

No description

Parameters

string $command
callable|null $callback

Return Value

Collection

at line 65
static Collection dispatchedAfterResponse(string $command, callable|null $callback = 'null')

No description

Parameters

string $command
callable|null $callback

Return Value

Collection

at line 65
static Collection batched(callable $callback)

No description

Parameters

callable $callback

Return Value

Collection

at line 65
static bool hasDispatched(string $command)

No description

Parameters

string $command

Return Value

bool

at line 65
static bool hasDispatchedSync(string $command)

No description

Parameters

string $command

Return Value

bool

at line 65
static bool hasDispatchedAfterResponse(string $command)

No description

Parameters

string $command

Return Value

bool

at line 65
static Batch dispatchFakeBatch(string $name = '\'\'')

No description

Parameters

string $name

Return Value

Batch

at line 65
static Batch recordPendingBatch(PendingBatch $pendingBatch)

No description

Parameters

PendingBatch $pendingBatch

Return Value

Batch

at line 65
static BusFake serializeAndRestore(bool $serializeAndRestore = 'true')

No description

Parameters

bool $serializeAndRestore

Return Value

BusFake

at line 65
static array dispatchedBatches()

No description

Return Value

array