From 4f94ccb5f70d813014b43667d2b5d2133accde55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Thu, 19 Dec 2024 21:50:59 +0100 Subject: [PATCH] clarify docblock --- src/Bootstrappers/RootUrlBootstrapper.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Bootstrappers/RootUrlBootstrapper.php b/src/Bootstrappers/RootUrlBootstrapper.php index 1d7542e6..3ccfef95 100644 --- a/src/Bootstrappers/RootUrlBootstrapper.php +++ b/src/Bootstrappers/RootUrlBootstrapper.php @@ -37,9 +37,10 @@ class RootUrlBootstrapper implements TenancyBootstrapper /** * You may want to selectively enable or disable this bootstrapper in specific tests. - * For instance, when using `Livewire::test()` this bootstrapper may cause problems, - * while in tests that are generating URLs in things like mails the bootstrapper should - * be used just like in any queued job. + * For instance, when using `Livewire::test()` this bootstrapper can cause problems, + * due to an internal Livewire route, so you may want to disable it, while in tests + * that are generating URLs in things like mails, the bootstrapper should be used + * just like in any queued job. */ public static bool $rootUrlOverrideInTests = false;