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