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

Revert "improve comments, move method to SyncMaster interface"

This reverts commit 5ddd50deb9.
This commit is contained in:
Abrar Ahmad 2022-08-10 13:03:17 +05:00
parent 5ddd50deb9
commit 724ed5a502
3 changed files with 16 additions and 5 deletions

View file

@ -15,6 +15,4 @@ interface SyncMaster extends Syncable
public function tenants(): BelongsToMany;
public function getTenantModelName(): string;
public function getCreateAttributeNames(): array;
}

View file

@ -15,4 +15,6 @@ interface Syncable
public function getSyncedAttributeNames(): array;
public function triggerSyncEvent();
public function getCreateAttributeNames(): array;
}