Skip to content

Commit

Permalink
Fix ModelNotSyncMasterException message (#1257)
Browse files Browse the repository at this point in the history
  • Loading branch information
coreyhn authored Oct 2, 2024
1 parent ed52c48 commit 30cdc94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Exceptions/ModelNotSyncMasterException.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.");
}
}

0 comments on commit 30cdc94

Please sign in to comment.