From bc0eda3895db135405a002715a9e41cbcaecf0fc Mon Sep 17 00:00:00 2001 From: Chris Brown Date: Mon, 23 Sep 2019 17:41:36 -0400 Subject: [PATCH] Update event-system.blade.md --- docs/source/v2/event-system.blade.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/v2/event-system.blade.md b/docs/source/v2/event-system.blade.md index fb3e953..8d46002 100644 --- a/docs/source/v2/event-system.blade.md +++ b/docs/source/v2/event-system.blade.md @@ -7,11 +7,11 @@ section: content # The Event System -You can use event hooks to change the behavior of the tenancy boostrapping and tenancy ending processes. +You can use event hooks to change the behavior of the tenancy bootstrapping and tenancy ending processes. The following events are available: -- `boostrapping` -- `boostrapped` +- `bootstrapping` +- `bootstrapped` - `ending` - `ended` @@ -46,4 +46,4 @@ Another common use case for events is tenant-specific config: \Tenancy::eventListener('bootstrapped', function ($tenantManager) { config(['some.api.key' => $tenantManager->tenant['api_key']); }); -``` \ No newline at end of file +```