NotificationFake
class NotificationFake implements Factory, Dispatcher (View source)
Properties
protected array | $notifications | All of the notifications that have been sent. | |
string|null | $locale | Locale used when sending notifications. |
Methods
void | assertSentTo(mixed $notifiable, string $notification, callable|null $callback = null) Assert if a notification was sent based on a truth-test callback. | |
void | assertSentToTimes(mixed $notifiable, string $notification, int $times = 1) Assert if a notification was sent a number of times. | |
void | assertNotSentTo(mixed $notifiable, string $notification, callable|null $callback = null) Determine if a notification was sent based on a truth-test callback. | |
void | assertNothingSent() Assert that no notifications were sent. | |
void | assertTimesSent(int $expectedCount, string $notification) Assert the total amount of times a notification was sent. | |
Collection | sent(mixed $notifiable, string $notification, callable|null $callback = null) Get all of the notifications matching a truth-test callback. | |
bool | hasSent(mixed $notifiable, string $notification) Determine if there are more notifications left to inspect. | |
array | notificationsFor(mixed $notifiable, string $notification) Get all of the notifications for a notifiable entity by type. | |
void | send(Collection|array|mixed $notifiables, mixed $notification) Send the given notification to the given notifiable entities. | |
void | sendNow(Collection|array|mixed $notifiables, mixed $notification) Send the given notification immediately. | |
mixed | channel(string|null $name = null) Get a channel instance by name. | |
$this | locale(string $locale) Set the locale of notifications. |
Details
void assertSentTo(mixed $notifiable, string $notification, callable|null $callback = null)
Assert if a notification was sent based on a truth-test callback.
void assertSentToTimes(mixed $notifiable, string $notification, int $times = 1)
Assert if a notification was sent a number of times.
void assertNotSentTo(mixed $notifiable, string $notification, callable|null $callback = null)
Determine if a notification was sent based on a truth-test callback.
void assertNothingSent()
Assert that no notifications were sent.
void assertTimesSent(int $expectedCount, string $notification)
Assert the total amount of times a notification was sent.
Collection sent(mixed $notifiable, string $notification, callable|null $callback = null)
Get all of the notifications matching a truth-test callback.
bool hasSent(mixed $notifiable, string $notification)
Determine if there are more notifications left to inspect.
protected array notificationsFor(mixed $notifiable, string $notification)
Get all of the notifications for a notifiable entity by type.
void send(Collection|array|mixed $notifiables, mixed $notification)
Send the given notification to the given notifiable entities.
void sendNow(Collection|array|mixed $notifiables, mixed $notification)
Send the given notification immediately.
mixed channel(string|null $name = null)
Get a channel instance by name.
$this locale(string $locale)
Set the locale of notifications.
© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/5.7/Illuminate/Support/Testing/Fakes/NotificationFake.html