class Notification 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
fake()

Replace the bound instance with a fake.

routes(array $channels)

Begin sending a notification to an anonymous notifiable on the given channels.

route(string $channel, mixed $route)

Begin sending a notification to an anonymous notifiable.

static void
send(mixed $notifiables, mixed $notification)

No description

static void
sendNow(mixed $notifiables, mixed $notification, array|null $channels = 'null')

No description

static mixed
channel(UnitEnum|string|null $name = 'null')

No description

static ChannelManager
extend(string $driver, Closure $callback)

No description

static string
getDefaultDriver()

No description

static string
deliversVia()

No description

static void
deliverVia(string $channel)

No description

static ChannelManager
locale(string $locale)

No description

static string|null
getLocale()

No description

static mixed
driver(UnitEnum|string|null $driver = 'null')

No description

static array
getDrivers()

No description

static Container
getContainer()

No description

static ChannelManager
setContainer(Container $container)

No description

static ChannelManager
forgetDrivers()

No description

static void
macro(string $name, callable|object $macro)

No description

static void
mixin(object $mixin, bool $replace = 'true')

No description

static bool
hasMacro(string $name)

No description

static void
flushMacros()

No description

static string|null
resolveConnectionFromQueueRoute(object $queueable)

No description

static string|null
resolveQueueFromQueueRoute(object $queueable)

No description

static void
assertSentOnDemand(Closure|string $notification, callable|null $callback = 'null')

No description

static void
assertSentTo(mixed $notifiable, Closure|string $notification, callable|string|int|null $callback = 'null')

No description

static void
assertSentOnDemandTimes(string $notification, int $times = '1')

No description

static void
assertSentToTimes(mixed $notifiable, string $notification, int $times = '1')

No description

static void
assertNotSentTo(mixed $notifiable, Closure|string $notification, callable|null $callback = 'null')

No description

static void
assertNothingSent()

No description

static void
assertNothingSentTo(mixed $notifiable)

No description

static void
assertSentTimes(string $notification, int $expectedCount)

No description

static void
assertCount(int $expectedCount)

No description

static Collection
sent(mixed $notifiable, string $notification, callable|null $callback = 'null')

No description

static bool
hasSent(mixed $notifiable, string $notification)

No description

serializeAndRestore(bool $serializeAndRestore = 'true')

No description

static array
sentNotifications()

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 83
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 54
static NotificationFake fake()

Replace the bound instance with a fake.

Return Value

NotificationFake

at line 64
static AnonymousNotifiable routes(array $channels)

Begin sending a notification to an anonymous notifiable on the given channels.

Parameters

array $channels

Return Value

AnonymousNotifiable

at line 78
static AnonymousNotifiable route(string $channel, mixed $route)

Begin sending a notification to an anonymous notifiable.

Parameters

string $channel
mixed $route

Return Value

AnonymousNotifiable

at line 49
static void send(mixed $notifiables, mixed $notification)

No description

Parameters

mixed $notifiables
mixed $notification

Return Value

void

at line 49
static void sendNow(mixed $notifiables, mixed $notification, array|null $channels = 'null')

No description

Parameters

mixed $notifiables
mixed $notification
array|null $channels

Return Value

void

at line 49
static mixed channel(UnitEnum|string|null $name = 'null')

No description

Parameters

UnitEnum|string|null $name

Return Value

mixed

at line 49
static ChannelManager extend(string $driver, Closure $callback)

No description

Parameters

string $driver
Closure $callback

Return Value

ChannelManager

at line 49
static string getDefaultDriver()

No description

Return Value

string

at line 49
static string deliversVia()

No description

Return Value

string

at line 49
static void deliverVia(string $channel)

No description

Parameters

string $channel

Return Value

void

at line 49
static ChannelManager locale(string $locale)

No description

Parameters

string $locale

Return Value

ChannelManager

at line 49
static string|null getLocale()

No description

Return Value

string|null

at line 49
static mixed driver(UnitEnum|string|null $driver = 'null')

No description

Parameters

UnitEnum|string|null $driver

Return Value

mixed

at line 49
static array getDrivers()

No description

Return Value

array

at line 49
static Container getContainer()

No description

Return Value

Container

at line 49
static ChannelManager setContainer(Container $container)

No description

Parameters

Container $container

Return Value

ChannelManager

at line 49
static ChannelManager forgetDrivers()

No description

Return Value

ChannelManager

at line 49
static void macro(string $name, callable|object $macro)

No description

Parameters

string $name
callable|object $macro

Return Value

void

at line 49
static void mixin(object $mixin, bool $replace = 'true')

No description

Parameters

object $mixin
bool $replace

Return Value

void

at line 49
static bool hasMacro(string $name)

No description

Parameters

string $name

Return Value

bool

at line 49
static void flushMacros()

No description

Return Value

void

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

No description

Parameters

object $queueable

Return Value

string|null

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

No description

Parameters

object $queueable

Return Value

string|null

at line 49
static void assertSentOnDemand(Closure|string $notification, callable|null $callback = 'null')

No description

Parameters

Closure|string $notification
callable|null $callback

Return Value

void

at line 49
static void assertSentTo(mixed $notifiable, Closure|string $notification, callable|string|int|null $callback = 'null')

No description

Parameters

mixed $notifiable
Closure|string $notification
callable|string|int|null $callback

Return Value

void

at line 49
static void assertSentOnDemandTimes(string $notification, int $times = '1')

No description

Parameters

string $notification
int $times

Return Value

void

at line 49
static void assertSentToTimes(mixed $notifiable, string $notification, int $times = '1')

No description

Parameters

mixed $notifiable
string $notification
int $times

Return Value

void

at line 49
static void assertNotSentTo(mixed $notifiable, Closure|string $notification, callable|null $callback = 'null')

No description

Parameters

mixed $notifiable
Closure|string $notification
callable|null $callback

Return Value

void

at line 49
static void assertNothingSent()

No description

Return Value

void

at line 49
static void assertNothingSentTo(mixed $notifiable)

No description

Parameters

mixed $notifiable

Return Value

void

at line 49
static void assertSentTimes(string $notification, int $expectedCount)

No description

Parameters

string $notification
int $expectedCount

Return Value

void

at line 49
static void assertCount(int $expectedCount)

No description

Parameters

int $expectedCount

Return Value

void

at line 49
static Collection sent(mixed $notifiable, string $notification, callable|null $callback = 'null')

No description

Parameters

mixed $notifiable
string $notification
callable|null $callback

Return Value

Collection

at line 49
static bool hasSent(mixed $notifiable, string $notification)

No description

Parameters

mixed $notifiable
string $notification

Return Value

bool

at line 49
static NotificationFake serializeAndRestore(bool $serializeAndRestore = 'true')

No description

Parameters

bool $serializeAndRestore

Return Value

NotificationFake

at line 49
static array sentNotifications()

No description

Return Value

array