Remove var_dump from mappers

This commit is contained in:
Dennis Eichhorn 2017-11-07 20:35:13 +01:00
parent bdfda67bcd
commit b9e213f6c9
5 changed files with 0 additions and 10 deletions

View File

@ -113,8 +113,6 @@ class KanbanBoardMapper extends DataMapperAbstract
return $objId;
}
} catch (\Exception $e) {
var_dump($e->getMessage());
return false;
}

View File

@ -104,8 +104,6 @@ class KanbanCardCommentMapper extends DataMapperAbstract
return $objId;
}
} catch (\Exception $e) {
var_dump($e->getMessage());
return false;
}

View File

@ -129,8 +129,6 @@ class KanbanCardMapper extends DataMapperAbstract
return $objId;
}
} catch (\Exception $e) {
var_dump($e->getMessage());
return false;
}

View File

@ -94,8 +94,6 @@ class KanbanColumnMapper extends DataMapperAbstract
return $objId;
}
} catch (\Exception $e) {
var_dump($e->getMessage());
return false;
}

View File

@ -79,8 +79,6 @@ class KanbanLabelMapper extends DataMapperAbstract
return $objId;
}
} catch (\Exception $e) {
var_dump($e->getMessage());
return false;
}