Entity\Comment code quality fix.

This commit is contained in:
Alexey Skobkin 2016-12-12 21:02:19 +03:00
parent b06eaec2b3
commit 95cab0b564

View file

@ -96,7 +96,7 @@ class Comment
private $parent; private $parent;
/** /**
* @var Comment[] * @var Comment[]|ArrayCollection
* *
* @ORM\OneToMany(targetEntity="Skobkin\Bundle\PointToolsBundle\Entity\Blogs\Comment", fetch="EXTRA_LAZY", mappedBy="parent") * @ORM\OneToMany(targetEntity="Skobkin\Bundle\PointToolsBundle\Entity\Blogs\Comment", fetch="EXTRA_LAZY", mappedBy="parent")
*/ */
@ -370,7 +370,7 @@ class Comment
/** /**
* Get children * Get children
* *
* @return ArrayCollection * @return Comment[]|ArrayCollection
*/ */
public function getChildren() public function getChildren()
{ {