sterntours/vendor/gedmo/doctrine-extensions/lib/Gedmo/SoftDeleteable/Traits/SoftDeleteableDocument.php
2020-07-09 12:49:32 +02:00

54 lines
983 B
PHP

<?php
namespace Gedmo\SoftDeleteable\Traits;
use Doctrine\ODM\MongoDB\Mapping\Annotations as ODM;
/**
* SoftDeletable Trait, usable with PHP >= 5.4
*
* @author Wesley van Opdorp <wesley.van.opdorp@freshheads.com>
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
trait SoftDeleteableDocument
{
/**
* @var \DateTime
* @ODM\Field(type="date")
*/
protected $deletedAt;
/**
* Sets deletedAt.
*
* @param \DateTime|null $deletedAt
*
* @return $this
*/
public function setDeletedAt(\DateTime $deletedAt = null)
{
$this->deletedAt = $deletedAt;
return $this;
}
/**
* Returns deletedAt.
*
* @return \DateTime
*/
public function getDeletedAt()
{
return $this->deletedAt;
}
/**
* Is deleted?
*
* @return bool
*/
public function isDeleted()
{
return null !== $this->deletedAt;
}
}