diff --git a/src/Bundle/ChillPersonBundle/Actions/Remove/Handler/PersonMoveRelationHandler.php b/src/Bundle/ChillPersonBundle/Actions/Remove/Handler/PersonMoveRelationHandler.php index 29f5f4199..2c2f68ca9 100644 --- a/src/Bundle/ChillPersonBundle/Actions/Remove/Handler/PersonMoveRelationHandler.php +++ b/src/Bundle/ChillPersonBundle/Actions/Remove/Handler/PersonMoveRelationHandler.php @@ -39,8 +39,8 @@ class PersonMoveRelationHandler implements PersonMoveSqlHandlerInterface $deleteSql = [ sprintf("DELETE FROM chill_person_relationships WHERE fromperson_id = %d", $from->getId()), - sprintf("DELETE FROM chill_person_relationships WHERE toperson_id = %d" , $from->getId()) - ]; + sprintf("DELETE FROM chill_person_relationships WHERE toperson_id = %d", $from->getId()) + ]; return [$insertSql, ...$deleteSql]; }