ddl = $ddl; } /** * @return string */ public function getDdl() { return $this->ddl; } /** * @param string */ public function setDdlType($ddlType) { $this->ddlType = $ddlType; } /** * @return string */ public function getDdlType() { return $this->ddlType; } /** * @param string */ public function setEntity($entity) { $this->entity = $entity; } /** * @return string */ public function getEntity() { return $this->entity; } /** * @param string */ public function setEntityType($entityType) { $this->entityType = $entityType; } /** * @return string */ public function getEntityType() { return $this->entityType; } /** * @param string[] */ public function setIssueId($issueId) { $this->issueId = $issueId; } /** * @return string[] */ public function getIssueId() { return $this->issueId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(EntityDdl::class, 'Google_Service_DatabaseMigrationService_EntityDdl');