User phpDoc fixes.

This commit is contained in:
Alexey Skobkin 2017-01-09 21:29:39 +03:00
parent 628916d69b
commit bdbcf14a15

View file

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