1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-06 05:24:04 +00:00

Fix styling

This commit is contained in:
erikgaal 2022-06-23 12:51:20 +00:00 committed by github-actions[bot]
parent 68846f34d1
commit 9edf139be0
21 changed files with 9 additions and 53 deletions

View file

@ -27,7 +27,6 @@ class Tenancy
/**
* Initializes the tenant.
* @param Tenant|int|string $tenant
* @return void
*/
public function initialize($tenant): void
{
@ -106,9 +105,6 @@ class Tenancy
/**
* Run a callback in the central context.
* Atomic, safely reverts to previous context.
*
* @param callable $callback
* @return mixed
*/
public function central(callable $callback)
{
@ -132,7 +128,6 @@ class Tenancy
* More performant than running $tenant->run() one by one.
*
* @param Tenant[]|\Traversable|string[]|null $tenants
* @param callable $callback
* @return void
*/
public function runForMultiple($tenants, callable $callback)