Fix spelling errors and broken links

This commit is contained in:
Evan Ibbott 2020-09-01 11:35:51 -04:00
parent de0a9c40f6
commit ed8aa7647b
11 changed files with 11 additions and 11 deletions

View file

@ -33,7 +33,7 @@ class PostController
}
```
If you don't like that because you access some dependency from many actions, consider creating a memoized method:
If you don't like that because you access some dependency from many actions, consider creating a memorized method:
```php
class PostController

View file

@ -138,7 +138,7 @@ Note: All events are located in the `Stancl\Tenancy\Events` namespace.
- `RevertingToCentralContext`
- `RevertedToCentralContext`
Note the difference between *initializing tenancy and bootstrapping* tenancy. Tenancy is initialized when a tenant is loaded into the `Tenancy` object. Whereas boostrapping happens **as a result of initialization** — if you're using automatic tenancy, the `BootstrapTenancy` class is listening to the `TenancyInitialized` event and after it's done executing bootstrappers, it fires an event saying that tenancy was bootstrapped. You want to use the bootstrapped event if you want to execute something **after the app has been transitioned to the tenant context.**
Note the difference between *initializing tenancy and bootstrapping* tenancy. Tenancy is initialized when a tenant is loaded into the `Tenancy` object. Whereas bootstrapping happens **as a result of initialization** — if you're using automatic tenancy, the `BootstrapTenancy` class is listening to the `TenancyInitialized` event and after it's done executing bootstrappers, it fires an event saying that tenancy was bootstrapped. You want to use the bootstrapped event if you want to execute something **after the app has been transitioned to the tenant context.**
### Tenant {#tenant}

View file

@ -7,7 +7,7 @@ section: content
# Integrating with other packages {#integrating-with-other-packages}
If you're using the [automatic mode]({{ $page->link('features/automatic-mode') }}) & [multi-database tenancy]({{ $page->link('multi-database-tenancy') }}), you'll be able to integrate with other packages easily.
If you're using the [automatic mode]({{ $page->link('automatic-mode') }}) & [multi-database tenancy]({{ $page->link('multi-database-tenancy') }}), you'll be able to integrate with other packages easily.
- [Integration with Spatie packages]({{ $page->link('integrations/spatie') }})
- [Laravel Horizon]({{ $page->link('integrations/horizon') }})

View file

@ -6,6 +6,6 @@ section: content
# Laravel Telescope {#laravel-telescope}
Enable the the *Telescope tags* feature to have all Telescope requests tagged with the current tenant's id.
Enable the *Telescope tags* feature to have all Telescope requests tagged with the current tenant's id.
Note that Telescope (& its migrations) will be part of the central app.

View file

@ -33,4 +33,4 @@ In the current version, we're also making [manual tenancy]({{ $page->link('manua
## Tenant identification {#tenant-identification}
For your application to be tenant-aware, a [tenant has to be identified]({{ $page->link('tenant-identification') }}). This package ships with a large number of identification middlewares. You may identify tenants by domain, subdomain, domain OR subdomain at the same time, path or request data.
For your application to be tenant-aware, a [tenant has to be identified]({{ $page->link('tenant-identification') }}). This package ships with a large number of identification middleware. You may identify tenants by domain, subdomain, domain OR subdomain at the same time, path or request data.