From 848736448c98e4cabf23685346ed44e45dc5dcbe Mon Sep 17 00:00:00 2001 From: lukinovec Date: Thu, 20 Aug 2026 16:44:19 +0200 Subject: [PATCH] Clarify TenantAssetController docblock --- src/Controllers/TenantAssetController.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/Controllers/TenantAssetController.php b/src/Controllers/TenantAssetController.php index 7926c1ce..7b80cc2b 100644 --- a/src/Controllers/TenantAssetController.php +++ b/src/Controllers/TenantAssetController.php @@ -14,9 +14,11 @@ use Symfony\Component\HttpFoundation\BinaryFileResponse; use Throwable; /** - * Requires FilesystemTenancyBootstrapper to be enabled, since the assets are served from - * the tenant's storage directory (or from the root of $publicDisk), and neither is - * tenant-specific unless the bootstrapper scopes it. + * Requires FilesystemTenancyBootstrapper to be enabled, since the assets are served from the + * tenant's storage directory, which isn't tenant-specific unless the bootstrapper scopes it. + * + * With a $publicDisk configured, the assets are served from the disk's root instead, so the + * bootstrapper is only needed if that root should be tenant-specific. * * @see FilesystemTenancyBootstrapper */