From b31b0c876891f94c6a6af3aafb273a0ddca0f279 Mon Sep 17 00:00:00 2001 From: coreyhn Date: Mon, 23 Sep 2024 12:45:25 -0600 Subject: [PATCH] Fix ModelNotSyncMasterException message --- src/Exceptions/ModelNotSyncMasterException.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Exceptions/ModelNotSyncMasterException.php b/src/Exceptions/ModelNotSyncMasterException.php index ee5feb9a6..09cabb065 100644 --- a/src/Exceptions/ModelNotSyncMasterException.php +++ b/src/Exceptions/ModelNotSyncMasterException.php @@ -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."); } }