Update working-with-objects.rst
Fix syntax error in constructor.
This commit is contained in:
parent
c2ad338707
commit
8e26705693
1 changed files with 2 additions and 1 deletions
|
@ -103,7 +103,8 @@ from newly opened EntityManager.
|
||||||
/** @OneToMany(targetEntity="Comment", mappedBy="article") */
|
/** @OneToMany(targetEntity="Comment", mappedBy="article") */
|
||||||
private $comments;
|
private $comments;
|
||||||
|
|
||||||
public function __construct {
|
public function __construct()
|
||||||
|
{
|
||||||
$this->comments = new ArrayCollection();
|
$this->comments = new ArrayCollection();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue