datetime is jsonserializable, didn't know that :)

This commit is contained in:
Dennis Eichhorn 2019-12-29 14:18:46 +01:00
parent 26b1ddaf27
commit d5f7aae34a

View File

@ -254,7 +254,7 @@ class EditorDoc implements ArrayableInterface, \JsonSerializable
'title' => $this->title,
'plain' => $this->plain,
'content' => $this->content,
'createdAt' => $this->createdAt->format('Y-m-d H:i:s'),
'createdAt' => $this->createdAt,
'createdBy' => $this->createdBy,
];
}