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

Fix ModelNotSyncMasterException message

This commit is contained in:
coreyhn 2024-09-23 12:45:25 -06:00
parent ed52c48428
commit b31b0c8768
No known key found for this signature in database
GPG key ID: E59ED16A7B14BE0E

View file

@ -10,6 +10,6 @@ class ModelNotSyncMasterException extends Exception
{
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.");
}
}