From 20e1fa1959426498489eecffbfdd0bdc397cd906 Mon Sep 17 00:00:00 2001 From: Ralfs Garkaklis Date: Thu, 8 Jul 2021 14:32:17 +0300 Subject: [PATCH] Fixed typo (#684) --- 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 abe8904b..ee5feb9a 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 resouces when you're in the central context"); + 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"); } }