diff --git a/src/ResourceSyncing/SyncMaster.php b/src/ResourceSyncing/SyncMaster.php index f419ef7b..aba1dfca 100644 --- a/src/ResourceSyncing/SyncMaster.php +++ b/src/ResourceSyncing/SyncMaster.php @@ -7,18 +7,17 @@ namespace Stancl\Tenancy\ResourceSyncing; use Illuminate\Database\Eloquent\Collection; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsToMany; -use Stancl\Tenancy\Contracts\Tenant; use Stancl\Tenancy\Database\Contracts\TenantWithDatabase; // todo@move move all resource syncing-related things to a separate namespace? /** - * @property-read Tenant[]|Collection $tenants + * @property-read TenantWithDatabase[]|Collection $tenants */ interface SyncMaster extends Syncable { /** - * @return BelongsToMany + * @return BelongsToMany */ public function tenants(): BelongsToMany;