diff --git a/docs/en/reference/working-with-objects.rst b/docs/en/reference/working-with-objects.rst index a7e03bcc9..02345ff4e 100644 --- a/docs/en/reference/working-with-objects.rst +++ b/docs/en/reference/working-with-objects.rst @@ -103,7 +103,8 @@ from newly opened EntityManager. /** @OneToMany(targetEntity="Comment", mappedBy="article") */ private $comments; - public function __construct { + public function __construct() + { $this->comments = new ArrayCollection(); }