From b991f3f865cc7b6338e2e17cc4cf057c62f2ebfd Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 14 Sep 2017 09:00:06 +0200 Subject: [PATCH] remove dump --- DataStorage/Database/DataMapperAbstract.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/DataStorage/Database/DataMapperAbstract.php b/DataStorage/Database/DataMapperAbstract.php index 6bab26dac..274418a3e 100644 --- a/DataStorage/Database/DataMapperAbstract.php +++ b/DataStorage/Database/DataMapperAbstract.php @@ -2245,8 +2245,6 @@ class DataMapperAbstract implements DataMapperInterface ->from(static::$table) ->where(static::$table . '.' . $ref, '=', $refKey); - var_dump($query->toSql()); - $sth = self::$db->con->prepare($query->toSql()); $sth->execute();