Fix entities mistakes
[MAILPOET-2439]
This commit is contained in:
committed by
Jack Kitterhing
parent
07214f9c87
commit
bda3bd3f63
@@ -40,7 +40,7 @@ class NewsletterLinkEntity {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @ORM\Column(type="string")
|
* @ORM\Column(type="string")
|
||||||
* @var string|null
|
* @var string
|
||||||
*/
|
*/
|
||||||
private $hash;
|
private $hash;
|
||||||
|
|
||||||
|
@@ -44,7 +44,7 @@ class StatisticsClickEntity {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @ORM\Column(type="integer")
|
* @ORM\Column(type="integer")
|
||||||
* @var int|null
|
* @var int
|
||||||
*/
|
*/
|
||||||
private $count;
|
private $count;
|
||||||
|
|
||||||
|
@@ -14,7 +14,6 @@ use MailPoetVendor\Doctrine\ORM\Mapping as ORM;
|
|||||||
class StatisticsOpenEntity {
|
class StatisticsOpenEntity {
|
||||||
use AutoincrementedIdTrait;
|
use AutoincrementedIdTrait;
|
||||||
use CreatedAtTrait;
|
use CreatedAtTrait;
|
||||||
use UpdatedAtTrait;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ORM\ManyToOne(targetEntity="MailPoet\Entities\NewsletterEntity")
|
* @ORM\ManyToOne(targetEntity="MailPoet\Entities\NewsletterEntity")
|
||||||
|
@@ -14,7 +14,6 @@ use MailPoetVendor\Doctrine\ORM\Mapping as ORM;
|
|||||||
class StatisticsUnsubscribeEntity {
|
class StatisticsUnsubscribeEntity {
|
||||||
use AutoincrementedIdTrait;
|
use AutoincrementedIdTrait;
|
||||||
use CreatedAtTrait;
|
use CreatedAtTrait;
|
||||||
use UpdatedAtTrait;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ORM\ManyToOne(targetEntity="MailPoet\Entities\NewsletterEntity")
|
* @ORM\ManyToOne(targetEntity="MailPoet\Entities\NewsletterEntity")
|
||||||
|
Reference in New Issue
Block a user