1
0
mirror of synced 2025-01-29 19:41:45 +03:00

[Docs] Fix field name in inversedby parameter

This commit is contained in:
Fran Moreno 2013-03-24 02:07:05 +01:00
parent 24c1b00963
commit 10c48bad7b

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;
}