File "DeletedAtTrait.php"

Full Path: /home/warrior1/public_html/languages/wp-content/plugins/mailpoet/lib/Doctrine/EntityTraits/DeletedAtTrait.php
File size: 542 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

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;
  }
}