Change collection property types to ArrayCollection

[MAILPOET-2428]
This commit is contained in:
Rostislav Wolny
2019-10-03 11:02:39 +02:00
committed by Jack Kitterhing
parent c2072ec107
commit 3ccdd85b97

View File

@ -8,7 +8,6 @@ use MailPoet\Doctrine\EntityTraits\CreatedAtTrait;
use MailPoet\Doctrine\EntityTraits\DeletedAtTrait; use MailPoet\Doctrine\EntityTraits\DeletedAtTrait;
use MailPoet\Doctrine\EntityTraits\UpdatedAtTrait; use MailPoet\Doctrine\EntityTraits\UpdatedAtTrait;
use MailPoetVendor\Doctrine\Common\Collections\ArrayCollection; use MailPoetVendor\Doctrine\Common\Collections\ArrayCollection;
use MailPoetVendor\Doctrine\Common\Collections\Collection;
use MailPoetVendor\Doctrine\Common\Collections\Criteria; use MailPoetVendor\Doctrine\Common\Collections\Criteria;
use MailPoetVendor\Doctrine\ORM\EntityNotFoundException; use MailPoetVendor\Doctrine\ORM\EntityNotFoundException;
use MailPoetVendor\Doctrine\ORM\Mapping\Column; use MailPoetVendor\Doctrine\ORM\Mapping\Column;
@ -120,19 +119,19 @@ class NewsletterEntity {
/** /**
* @OneToMany(targetEntity="MailPoet\Entities\NewsletterSegmentEntity", mappedBy="newsletter") * @OneToMany(targetEntity="MailPoet\Entities\NewsletterSegmentEntity", mappedBy="newsletter")
* @var NewsletterSegmentEntity[]|Collection * @var NewsletterSegmentEntity[]|ArrayCollection
*/ */
private $newsletter_segments; private $newsletter_segments;
/** /**
* @OneToMany(targetEntity="MailPoet\Entities\NewsletterOptionEntity", mappedBy="newsletter") * @OneToMany(targetEntity="MailPoet\Entities\NewsletterOptionEntity", mappedBy="newsletter")
* @var NewsletterOptionEntity[]|Collection * @var NewsletterOptionEntity[]|ArrayCollection
*/ */
private $options; private $options;
/** /**
* @OneToMany(targetEntity="MailPoet\Entities\SendingQueueEntity", mappedBy="newsletter") * @OneToMany(targetEntity="MailPoet\Entities\SendingQueueEntity", mappedBy="newsletter")
* @var SendingQueueEntity[]|Collection * @var SendingQueueEntity[]|ArrayCollection
*/ */
private $queues; private $queues;
@ -332,21 +331,21 @@ class NewsletterEntity {
} }
/** /**
* @return NewsletterSegmentEntity[]|Collection * @return NewsletterSegmentEntity[]|ArrayCollection
*/ */
function getNewsletterSegments() { function getNewsletterSegments() {
return $this->newsletter_segments; return $this->newsletter_segments;
} }
/** /**
* @return NewsletterOptionEntity[]|Collection * @return NewsletterOptionEntity[]|ArrayCollection
*/ */
function getOptions() { function getOptions() {
return $this->options; return $this->options;
} }
/** /**
* @return SendingQueueEntity[]|Collection * @return SendingQueueEntity[]|ArrayCollection
*/ */
function getQueues() { function getQueues() {
return $this->queues; return $this->queues;