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

Fix ModelNotSyncMasterException message (#1257)

This commit is contained in:
coreyhn 2024-10-02 15:44:08 -06:00 committed by GitHub
parent ed52c48428
commit 30cdc9461e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,6 +10,6 @@ class ModelNotSyncMasterException extends Exception
{ {
public function __construct(string $class) public function __construct(string $class)
{ {
parent::__construct("Model of $class class is not an SyncMaster model. Make sure you're using the central model to make changes to synced resources when you're in the central context"); parent::__construct("Model of $class class is not a SyncMaster model. Make sure you're using the central model to make changes to synced resources when you're in the central context.");
} }
} }