addType('id','integer'); $this->addType('boardId','integer'); $this->addType('order','integer'); } public function jsonSerialize() { return [ 'id' => $this->id, 'title' => $this->title, 'order' => $this->order, 'boardId' => $this->boardId ]; } }