From f639ce15650413239f1ab079611d6e63e9757002 Mon Sep 17 00:00:00 2001 From: Benjamin Vison Date: Wed, 18 Jul 2018 20:00:15 -0400 Subject: [PATCH] Update SyncService.php Incorrect variable causing exception --- Service/SyncService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Service/SyncService.php b/Service/SyncService.php index 6d55d43..5326367 100755 --- a/Service/SyncService.php +++ b/Service/SyncService.php @@ -68,7 +68,7 @@ public function getFromMappings($mappings) { /** @var SyncRepositoryInterface $repository */ $repository = $this->em->getRepository($syncMapping->getClass()); if(!($repository instanceof SyncRepositoryInterface)) { - error_log("The repository for the class {$mapping->getClass()} does not implement the SyncRepositoryInterface."); + error_log("The repository for the class {$syncMapping->getClass()} does not implement the SyncRepositoryInterface."); continue; }