package = $package; $this->url = $url; $this->description = $description; } /** * Returns the package that is patched. * * @return PackageInterface */ public function getPackage() { return $this->package; } /** * Returns the url of the patch. * * @return string */ public function getUrl() { return $this->url; } /** * Returns the description of the patch. * * @return string */ public function getDescription() { return $this->description; } }