Skip to content

Commit

Permalink
proof entity-manager.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
TomHAnderson committed Oct 25, 2024
1 parent 55641f0 commit 21d4f41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/entity-manager.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Entity Manager
==============

The EntityManager is the central access point to ORM functionality. It can be
used to find, persist, flush and remove entities.
used to find, persist, remove, and flush entities.

Using the EntityManager
=======================
Expand Down Expand Up @@ -102,7 +102,7 @@ persisted the changes to ``$article`` to the database yet.
Persisting
==========

By passing the entity through the ``$entityManager->persist`` method of the EntityManager,
By passing the entity through the ``$entityManager->persist()`` method of the EntityManager,
that entity becomes managed, which means that its persistence is from now
on managed by an EntityManager. As a result the persistent state of such
an entity will subsequently be properly synchronised with the database
Expand Down

0 comments on commit 21d4f41

Please sign in to comment.