addType('id','integer'); $this->addType('subscribed','boolean'); } /** * @return array */ public function jsonSerialize(): array { return [ 'id' => $this->id, 'url' => $this->url, 'subscribed' => $this->subscribed, 'updated' => $this->updated, ]; } }