Add entity trait for autoincremented IDs

[MAILPOET-2014]
This commit is contained in:
Jan Jakeš
2019-07-05 17:08:06 +02:00
committed by M. Shull
parent c59d0453e4
commit 2315e92c23

View File

@@ -0,0 +1,18 @@
<?php
namespace MailPoet\Doctrine\EntityTraits;
trait AutoincrementedIdTrait {
/**
* @Column(type="integer")
* @Id
* @GeneratedValue
* @var int|null
*/
private $id;
/** @return int */
public function getId() {
return $this->id;
}
}