User phpDoc fixes.
This commit is contained in:
parent
628916d69b
commit
bdbcf14a15
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue