data = $package; if ($type) { $this->data->set('package_type', $type); } } public function getData() { return $this->data; } public function __get($key) { return $this->data->get($key); } public function __isset($key) { return isset($this->data->$key); } public function __toString() { return $this->toJson(); } public function toJson() { return $this->data->toJson(); } public function toArray() { return $this->data->toArray(); } }