key = KOBIS_API_1; } public function jsonSerialize(): array { return [ 'movieCd' => $this->movieCd, 'dailyID' => $this->dailyID, 'weeklyID' => $this->weeklyID ]; } public function toArray(): array { return [ 'key' => $this->key, 'movieCd' => $this->movieCd, 'dailyID' => $this->dailyID, 'weeklyID' => $this->weeklyID ]; } public function toJson(): string|false { return json_encode([ 'movieCd' => $this->movieCd, 'dailyID' => $this->dailyID, 'weeklyID' => $this->weeklyID ]); } }