D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tvinntxo
/
www
/
wp-content
/
plugins
/
mailpoet
/
lib
/
Doctrine
/
EntityTraits
/
Filename :
UpdatedAtTrait.php
back
Copy
<?php namespace MailPoet\Doctrine\EntityTraits; if (!defined('ABSPATH')) exit; use DateTimeInterface; use MailPoetVendor\Doctrine\ORM\Mapping as ORM; trait UpdatedAtTrait { /** * @ORM\Column(type="datetimetz") * @var DateTimeInterface */ private $updatedAt; /** @return DateTimeInterface */ public function getUpdatedAt() { return $this->updatedAt; } public function setUpdatedAt(DateTimeInterface $updatedAt) { $this->updatedAt = $updatedAt; } }