make sure we always return int for episode_action.started

This commit is contained in:
thrillfall 2021-10-05 23:16:29 +02:00
parent 39e094e812
commit 871257ede2

View File

@ -41,4 +41,8 @@ class EpisodeActionEntity extends Entity implements JsonSerializable {
{ {
return (int) $this->timestampEpoch; return (int) $this->timestampEpoch;
} }
public function getStarted() : int {
return (int) $this->started;
}
} }