mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 21:57:16 +02:00
Added draft for history
This commit is contained in:
37
application/symfony/src/Attribut/TimestampAttribut.php
Normal file
37
application/symfony/src/Attribut/TimestampAttribut.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace Infinito\Attribut;
|
||||
|
||||
use Infinito\Exception\AllreadySetException;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*
|
||||
* @see TimestampAttributInterface
|
||||
*/
|
||||
trait TimestampAttribut
|
||||
{
|
||||
/**
|
||||
* @var \DateTime
|
||||
*/
|
||||
protected $timestamp;
|
||||
|
||||
/**
|
||||
* @param \DateTime $datetime
|
||||
*/
|
||||
public function setTimestamp(\DateTime $timestamp): void
|
||||
{
|
||||
if (isset($this->timestamp)) {
|
||||
throw new AllreadySetException('The timestamp is allready set. An Update is not possible!');
|
||||
}
|
||||
$this->timestamp = $timestamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \DateTime
|
||||
*/
|
||||
public function getTimestamp(): \DateTime
|
||||
{
|
||||
return $this->timestamp;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user