1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-04 20:54:03 +00:00

make comment more clear

This commit is contained in:
Samuel Štancl 2025-08-03 23:14:11 +02:00
parent f9fadce538
commit 3ec6a91428

View file

@ -388,6 +388,6 @@ function getResolverArgument(string $resolver, Tenant $tenant, string $parameter
// Assuming that: // Assuming that:
// - with RequestDataTenantResolver, the tenant model column value is the payload value // - with RequestDataTenantResolver, the tenant model column value is the payload value
// - with DomainTenantResolver, the tenant has a domain with name equal to the tenant model column value // - with DomainTenantResolver, the tenant has a domain with name equal to the tenant model column value (see the createDomain() calls in various tests)
return $tenant->{$parameterColumn}; return $tenant->{$parameterColumn};
} }