1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 12:54:05 +00:00

Misc test fixes (#44)

* Add suffix_storage_path test

* Get filesystem bootstrapper coverage to 100%

* Delete enabling DB bootstrapper in TestCase

* Complete most of test todos

* Complete last tests todo

* Fix docblock

* add todo

---------

Co-authored-by: lukinovec <lukinovec@gmail.com>
This commit is contained in:
Samuel Štancl 2024-04-06 19:17:34 +02:00 committed by GitHub
parent 489fbb9402
commit d9ca3cec38
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 154 additions and 159 deletions

View file

@ -34,7 +34,7 @@ class FortifyRouteBootstrapper implements TenancyBootstrapper
*
* For example:
*
* FortifyRouteTenancyBootstrapper::$fortifyRedirectMap = [
* FortifyRouteBootstrapper::$fortifyRedirectMap = [
* // On logout, redirect the user to the "bye" route in the central app
* 'logout' => [
* 'route_name' => 'bye',
@ -46,7 +46,7 @@ class FortifyRouteBootstrapper implements TenancyBootstrapper
* 'route_name' => 'welcome',
* 'context' => Context::TENANT,
* ],
*];
* ];
*/
public static array $fortifyRedirectMap = [];