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

Clarify behavior in log bootstrapper comments

This commit is contained in:
lukinovec 2025-10-29 14:56:37 +01:00
parent 58a2447adc
commit ae39e4dfd4

View file

@ -17,6 +17,7 @@ use Stancl\Tenancy\Contracts\Tenant;
* but feel free to customize that using the $storagePathChannels property) * but feel free to customize that using the $storagePathChannels property)
* are configured to use tenant storage directories. * are configured to use tenant storage directories.
* For this to work correctly, this bootstrapper must run *after* FilesystemTenancyBootstrapper. * For this to work correctly, this bootstrapper must run *after* FilesystemTenancyBootstrapper.
* FilesystemTenancyBootstrapper alters how storage_path() works in the tenant context.
* *
* The bootstrapper also supports custom channel overrides via the $channelOverrides property (see the property's docblock). * The bootstrapper also supports custom channel overrides via the $channelOverrides property (see the property's docblock).
* *
@ -27,8 +28,8 @@ class LogTenancyBootstrapper implements TenancyBootstrapper
protected array $defaultConfig = []; protected array $defaultConfig = [];
/** /**
* Log channels that use the storage_path() helper for storing the logs. * Log channels that use the storage_path() helper for storing the logs. Requires FilesystemTenancyBootstrapper to run before this bootstrapper.
* Requires FilesystemTenancyBootstrapper to run before this bootstrapper. * Or you can bypass this default behavior by using overrides, since they take precedence over the default behavior.
*/ */
public static array $storagePathChannels = ['single', 'daily']; public static array $storagePathChannels = ['single', 'daily'];