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