File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -534,10 +534,10 @@ Take a look at the previous example in more detail:
534
534
responsible for handling the process of persisting and fetching objects
535
535
to and from the database.
536
536
537
- * **line 16 ** The ``persist() `` method tells Doctrine to "manage" the ``$product ``
537
+ * **line 17 ** The ``persist() `` method tells Doctrine to "manage" the ``$product ``
538
538
object. This does not actually cause a query to be made to the database (yet).
539
539
540
- * **line 17 ** When the ``flush() `` method is called, Doctrine looks through
540
+ * **line 18 ** When the ``flush() `` method is called, Doctrine looks through
541
541
all of the objects that it's managing to see if they need to be persisted
542
542
to the database. In this example, the ``$product `` object has not been
543
543
persisted yet, so the entity manager executes an ``INSERT `` query and a
You can’t perform that action at this time.
0 commit comments