Skip to content

Commit

Permalink
Merge pull request #1503 from Labstep/fix/delete-by-id-routing
Browse files Browse the repository at this point in the history
Fixes: ObjectPersister not passing $routing to deleteManyByIdentifiers
  • Loading branch information
XWB committed Mar 7, 2019
2 parents ae6fa19 + 2137515 commit 4f830ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Persister/ObjectPersister.php
Expand Up @@ -92,7 +92,7 @@ public function deleteOne($object)
*/
public function deleteById($id, $routing = false)
{
$this->deleteManyByIdentifiers([$id]);
$this->deleteManyByIdentifiers([$id], $routing);
}

/**
Expand Down

0 comments on commit 4f830ed

Please sign in to comment.