- Fixed Datetime output
This commit is contained in:
parent
2f43fb4559
commit
8a16ab8062
|
@ -6,6 +6,8 @@ use Ulmus\Entity\EntityObjectInterface;
|
||||||
|
|
||||||
class Datetime extends \DateTime implements EntityObjectInterface {
|
class Datetime extends \DateTime implements EntityObjectInterface {
|
||||||
|
|
||||||
|
public string $format = "Y-m-d H:i:s";
|
||||||
|
|
||||||
public function load(...$arguments)
|
public function load(...$arguments)
|
||||||
{
|
{
|
||||||
$value = $arguments[0];
|
$value = $arguments[0];
|
||||||
|
@ -20,12 +22,12 @@ class Datetime extends \DateTime implements EntityObjectInterface {
|
||||||
|
|
||||||
public function save()
|
public function save()
|
||||||
{
|
{
|
||||||
return $this->getTimestamp();
|
return $this->__toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function __toString()
|
public function __toString()
|
||||||
{
|
{
|
||||||
return $this->format("Y-m-d H:i:s");
|
return $this->format($this->format);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue