geno/wp-content/plugins/mailpoet/lib/Doctrine/EntityTraits/DeletedAtTrait.php

28 lines
636 B
PHP
Raw Permalink Normal View History

2024-02-01 17:24:18 +05:30
<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing
namespace MailPoet\Doctrine\EntityTraits;
if (!defined('ABSPATH')) exit;
use DateTimeInterface;
use MailPoetVendor\Doctrine\ORM\Mapping as ORM;
trait DeletedAtTrait {
/**
* @ORM\Column(type="datetimetz", nullable=true)
* @var DateTimeInterface|null
*/
private $deletedAt;
/** @return DateTimeInterface|null */
public function getDeletedAt() {
return $this->deletedAt;
}
/** @param DateTimeInterface|null $deletedAt */
public function setDeletedAt($deletedAt) {
$this->deletedAt = $deletedAt;
}
}