class Mail 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
Get the registered name of the component.
Resolve the facade root instance from the container.
Clear a resolved facade instance.
Handle dynamic, static calls to the object.
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
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.
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.
in
Facade at line 168
static protected string|null
getMockableClass()
Get the mockable class for the bound instance.
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.
in
Facade at line 196
static bool
isFake()
Determines whether a "fake" has been set as the facade instance.
in
Facade at line 207
static mixed
getFacadeRoot()
Get the root object behind the facade.
at line 75
static protected string
getFacadeAccessor()
Get the registered name of the component.
in
Facade at line 223
static protected mixed
resolveFacadeInstance(string $name)
Resolve the facade root instance from the container.
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.
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.
in
Facade at line 265
static Collection
defaultAliases()
Get the application default aliases.
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.
in
Facade at line 347
static
__callStatic(string $method, array $args)
Handle dynamic, static calls to the object.
at line 61
static MailFake
fake()
Replace the bound instance with a fake.
at line 56
static Mailer
mailer(UnitEnum|string|null $name = 'null')
No description
at line 56
static Mailer
driver(UnitEnum|string|null $driver = 'null')
No description
at line 56
static Mailer
build(array $config)
No description
at line 56
static TransportInterface
createSymfonyTransport(array $config)
No description
at line 56
static string
getDefaultDriver()
No description
at line 56
static void
setDefaultDriver(UnitEnum|string $name)
No description
at line 56
static void
purge(UnitEnum|string|null $name = 'null')
No description
at line 56
static MailManager
extend(string $driver, Closure $callback, bool $poolable = 'false')
No description
at line 56
static Container
getApplication()
No description
at line 56
static MailManager
setApplication(Container $app)
No description
at line 56
static MailManager
forgetMailers()
No description
at line 56
static MailManager
setReleaseCallback(string $driver, Closure $callback)
No description
at line 56
static Closure|null
getReleaseCallback(string $driver)
No description
at line 56
static MailManager
addPoolable(string $driver)
No description
at line 56
static MailManager
removePoolable(string $driver)
No description
at line 56
static array
getPoolables()
No description
at line 56
static MailManager
setPoolables(array $poolables)
No description
at line 56
static PendingMail
to(mixed $users)
No description
at line 56
static PendingMail
cc(mixed $users)
No description
at line 56
static PendingMail
bcc(mixed $users)
No description
at line 56
static SentMessage|null
raw(string $text, mixed $callback)
No description
at line 56
static SentMessage|null
send(Mailable|array|string $view, array $data = '[]', Closure|string|null $callback = 'null')
No description
at line 56
static SentMessage|null
sendNow(Mailable|array|string $mailable, array $data = '[]', Closure|string|null $callback = 'null')
No description
at line 56
static void
assertSent(Closure|string $mailable, callable|array|string|int|null $callback = 'null')
No description
at line 56
static void
assertSentTimes(string $mailable, int $times = '1')
No description
at line 56
static void
assertNotOutgoing(Closure|string $mailable, callable|null $callback = 'null')
No description
at line 56
static void
assertNotSent(Closure|string $mailable, callable|array|string|null $callback = 'null')
No description
at line 56
static void
assertNothingOutgoing()
No description
at line 56
static void
assertNothingSent()
No description
at line 56
static void
assertQueued(Closure|string $mailable, callable|array|string|int|null $callback = 'null')
No description
at line 56
static void
assertQueuedTimes(string $mailable, int $times = '1')
No description
at line 56
static void
assertNotQueued(Closure|string $mailable, callable|array|string|null $callback = 'null')
No description
at line 56
static void
assertNothingQueued()
No description
at line 56
static void
assertSentCount(int $count)
No description
at line 56
static void
assertQueuedCount(int $count)
No description
at line 56
static void
assertOutgoingCount(int $count)
No description
at line 56
static Collection
sent(Closure|string $mailable, callable|null $callback = 'null')
No description
at line 56
static bool
hasSent(string $mailable)
No description
at line 56
static Collection
queued(Closure|string $mailable, callable|null $callback = 'null')
No description
at line 56
static bool
hasQueued(string $mailable)
No description
at line 56
static mixed
queue(Mailable|array|string $view, string|null $queue = 'null')
No description
at line 56
static mixed
later(DateTimeInterface|int $delay, Mailable|array|string $view, string|null $queue = 'null')
No description