addType('id', 'integer'); $this->addType('boardId', 'integer'); $this->addType('lastContact', 'integer'); } public function jsonSerialize(): array { return [ 'id' => $this->id, 'userId' => $this->userId, 'token' => $this->token, 'lastContact' => $this->lastContact, 'boardId' => $this->boardId, ]; } }