Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit eac908c

Browse filesBrowse files
authored
Fix in line numbering
1 parent 906e431 commit eac908c
Copy full SHA for eac908c

File tree

Expand file treeCollapse file tree

1 file changed

+4
-4
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+4
-4
lines changed

‎doctrine.rst

Copy file name to clipboardExpand all lines: doctrine.rst
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -384,17 +384,17 @@ Take a look at the previous example in more detail:
384384

385385
.. _doctrine-entity-manager:
386386

387-
* **line 17** The ``$this->getDoctrine()->getManager()`` method gets Doctrine's
387+
* **line 16** The ``$this->getDoctrine()->getManager()`` method gets Doctrine's
388388
*entity manager* object, which is the most important object in Doctrine. It's
389389
responsible for saving objects to, and fetching objects from, the database.
390390

391-
* **lines 19-22** In this section, you instantiate and work with the ``$product``
391+
* **lines 18-21** In this section, you instantiate and work with the ``$product``
392392
object like any other normal PHP object.
393393

394-
* **line 25** The ``persist($product)`` call tells Doctrine to "manage" the
394+
* **line 24** The ``persist($product)`` call tells Doctrine to "manage" the
395395
``$product`` object. This does **not** cause a query to be made to the database.
396396

397-
* **line 28** When the ``flush()`` method is called, Doctrine looks through
397+
* **line 27** When the ``flush()`` method is called, Doctrine looks through
398398
all of the objects that it's managing to see if they need to be persisted
399399
to the database. In this example, the ``$product`` object's data doesn't
400400
exist in the database, so the entity manager executes an ``INSERT`` query,

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.