User phpDoc fixes.

This commit is contained in:
Alexey Skobkin 2017-01-09 21:29:39 +03:00
parent 628916d69b
commit bdbcf14a15
1 changed files with 3 additions and 3 deletions

View File

@ -49,21 +49,21 @@ class User
private $updatedAt;
/**
* @var Subscription|ArrayCollection
* @var ArrayCollection|Subscription[]
*
* @ORM\OneToMany(targetEntity="Subscription", mappedBy="author", fetch="EXTRA_LAZY")
*/
private $subscribers;
/**
* @var Subscription|ArrayCollection
* @var ArrayCollection|Subscription[]
*
* @ORM\OneToMany(targetEntity="Subscription", mappedBy="subscriber", fetch="EXTRA_LAZY")
*/
private $subscriptions;
/**
* @var SubscriptionEvent|ArrayCollection
* @var ArrayCollection|SubscriptionEvent[]
* @ORM\OneToMany(targetEntity="SubscriptionEvent", mappedBy="author", fetch="EXTRA_LAZY")
*/
private $newSubscriberEvents;