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 db4d197

Browse filesBrowse files
committed
minor #7977 Fix typo in a class name (apflieger)
This PR was submitted for the master branch but it was merged into the 3.3 branch instead (closes #7977). Discussion ---------- Fix typo in a class name EnityManagerInterface -> En(t)ityManagerInterface Commits ------- 0a83630 Fix typo in a class name
2 parents f89e2d0 + 0a83630 commit db4d197
Copy full SHA for db4d197

File tree

Expand file treeCollapse file tree

1 file changed

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

1 file changed

+3
-3
lines changed

‎doctrine.rst

Copy file name to clipboardExpand all lines: doctrine.rst
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -633,9 +633,9 @@ Fetching an object back out of the database is even easier. For example,
633633
suppose you've configured a route to display a specific ``Product`` based
634634
on its ``id`` value::
635635

636-
use Doctrine\ORM\EnityManagerInterface;
636+
use Doctrine\ORM\EntityManagerInterface;
637637

638-
public function showAction($productId, EnityManagerInterface $em)
638+
public function showAction($productId, EntityManagerInterface $em)
639639
{
640640
$product = $em->getRepository('AppBundle:Product')
641641
->find($productId);
@@ -727,7 +727,7 @@ Updating an Object
727727
Once you've fetched an object from Doctrine, updating it is easy. Suppose
728728
you have a route that maps a product id to an update action in a controller::
729729

730-
use Doctrine\ORM\EnityManagerInterface;
730+
use Doctrine\ORM\EntityManagerInterface;
731731

732732
public function updateAction($productId, EntityManagerInterface $em)
733733
{

0 commit comments

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