Remove var_dump from mappers

This commit is contained in:
Dennis Eichhorn 2017-11-07 20:35:13 +01:00
parent bd637084c8
commit c04520da99
2 changed files with 0 additions and 6 deletions

View File

@ -113,8 +113,6 @@ class TaskElementMapper extends DataMapperAbstract
try {
$objId = parent::create($obj, $relations);
} catch (\Exception $e) {
var_dump($e->getMessage());
return false;
}

View File

@ -141,8 +141,6 @@ class TaskMapper extends DataMapperAbstract
return $objId;
}
} catch (\Exception $e) {
var_dump($e->getMessage());
return false;
}
@ -165,8 +163,6 @@ class TaskMapper extends DataMapperAbstract
$count = $sth->fetchAll()[0][0] ?? 0;
} catch (\Exception $e) {
var_dump($e->getMessage());
return false;
}