1
0
mirror of synced 2024-12-13 14:56:01 +03:00

Merge pull request #628 from franmomu/patch-2

[Docs] Fix field name in inversedby parameter
This commit is contained in:
Guilherme Blanco 2013-03-24 09:27:48 -07:00
commit 99a15377be

View File

@ -93,7 +93,7 @@ information about its type and if it's the owning or inverse side.
/**
* Bidirectional - Many Comments are authored by one user (OWNING SIDE)
*
* @ManyToOne(targetEntity="User", inversedBy="authoredComments")
* @ManyToOne(targetEntity="User", inversedBy="commentsAuthored")
*/
private $author;
}