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 d974c77

Browse filesBrowse files
committed
minor #3556 Fix PSR error (ifdattic)
This PR was merged into the 2.3 branch. Discussion ---------- Fix PSR error | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | 2.3 | Fixed tickets | Fixes: Opening parenthesis of a multi-line function call must be the last content on the line Commits ------- 31a0b07 Fix PSR error
2 parents f4bb017 + 31a0b07 commit d974c77
Copy full SHA for d974c77

File tree

Expand file treeCollapse file tree

1 file changed

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

1 file changed

+2
-2
lines changed

‎book/doctrine.rst

Copy file name to clipboardExpand all lines: book/doctrine.rst
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1253,8 +1253,8 @@ following method to the ``ProductRepository`` class::
12531253
public function findOneByIdJoinedToCategory($id)
12541254
{
12551255
$query = $this->getEntityManager()
1256-
->createQuery('
1257-
SELECT p, c FROM AcmeStoreBundle:Product p
1256+
->createQuery(
1257+
'SELECT p, c FROM AcmeStoreBundle:Product p
12581258
JOIN p.category c
12591259
WHERE p.id = :id'
12601260
)->setParameter('id', $id);

0 commit comments

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