From 3b6842a60b7dbe06d8fb9d9ee2cf9209ceae93c0 Mon Sep 17 00:00:00 2001 From: Julio Montoya Date: Sat, 30 Jan 2021 20:03:11 +0100 Subject: [PATCH] Remove unused entities --- src/CourseBundle/Entity/CUserinfoContent.php | 249 ------------------- src/CourseBundle/Entity/CUserinfoDef.php | 218 ---------------- 2 files changed, 467 deletions(-) delete mode 100644 src/CourseBundle/Entity/CUserinfoContent.php delete mode 100644 src/CourseBundle/Entity/CUserinfoDef.php diff --git a/src/CourseBundle/Entity/CUserinfoContent.php b/src/CourseBundle/Entity/CUserinfoContent.php deleted file mode 100644 index be33cae09a..0000000000 --- a/src/CourseBundle/Entity/CUserinfoContent.php +++ /dev/null @@ -1,249 +0,0 @@ -userId = $userId; - - return $this; - } - - /** - * Get userId. - * - * @return int - */ - public function getUserId() - { - return $this->userId; - } - - /** - * Set definitionId. - * - * @param int $definitionId - * - * @return CUserinfoContent - */ - public function setDefinitionId($definitionId) - { - $this->definitionId = $definitionId; - - return $this; - } - - /** - * Get definitionId. - * - * @return int - */ - public function getDefinitionId() - { - return $this->definitionId; - } - - /** - * Set editorIp. - * - * @param string $editorIp - * - * @return CUserinfoContent - */ - public function setEditorIp($editorIp) - { - $this->editorIp = $editorIp; - - return $this; - } - - /** - * Get editorIp. - * - * @return string - */ - public function getEditorIp() - { - return $this->editorIp; - } - - /** - * Set editionTime. - * - * @param \DateTime $editionTime - * - * @return CUserinfoContent - */ - public function setEditionTime($editionTime) - { - $this->editionTime = $editionTime; - - return $this; - } - - /** - * Get editionTime. - * - * @return \DateTime - */ - public function getEditionTime() - { - return $this->editionTime; - } - - /** - * Set content. - * - * @param string $content - * - * @return CUserinfoContent - */ - public function setContent($content) - { - $this->content = $content; - - return $this; - } - - /** - * Get content. - * - * @return string - */ - public function getContent() - { - return $this->content; - } - - /** - * Set id. - * - * @param int $id - * - * @return CUserinfoContent - */ - public function setId($id) - { - $this->id = $id; - - return $this; - } - - /** - * Get id. - * - * @return int - */ - public function getId() - { - return $this->id; - } - - /** - * Set cId. - * - * @param int $cId - * - * @return CUserinfoContent - */ - public function setCId($cId) - { - $this->cId = $cId; - - return $this; - } - - /** - * Get cId. - * - * @return int - */ - public function getCId() - { - return $this->cId; - } -} diff --git a/src/CourseBundle/Entity/CUserinfoDef.php b/src/CourseBundle/Entity/CUserinfoDef.php deleted file mode 100644 index dcd3dd9324..0000000000 --- a/src/CourseBundle/Entity/CUserinfoDef.php +++ /dev/null @@ -1,218 +0,0 @@ -title = $title; - - return $this; - } - - /** - * Get title. - * - * @return string - */ - public function getTitle() - { - return $this->title; - } - - /** - * Set comment. - * - * @param string $comment - * - * @return CUserinfoDef - */ - public function setComment($comment) - { - $this->comment = $comment; - - return $this; - } - - /** - * Get comment. - * - * @return string - */ - public function getComment() - { - return $this->comment; - } - - /** - * Set lineCount. - * - * @param bool $lineCount - * - * @return CUserinfoDef - */ - public function setLineCount($lineCount) - { - $this->lineCount = $lineCount; - - return $this; - } - - /** - * Get lineCount. - * - * @return bool - */ - public function getLineCount() - { - return $this->lineCount; - } - - /** - * Set rank. - * - * @param bool $rank - * - * @return CUserinfoDef - */ - public function setRank($rank) - { - $this->rank = $rank; - - return $this; - } - - /** - * Get rank. - * - * @return bool - */ - public function getRank() - { - return $this->rank; - } - - /** - * Set id. - * - * @param int $id - * - * @return CUserinfoDef - */ - public function setId($id) - { - $this->id = $id; - - return $this; - } - - /** - * Get id. - * - * @return int - */ - public function getId() - { - return $this->id; - } - - /** - * Set cId. - * - * @param int $cId - * - * @return CUserinfoDef - */ - public function setCId($cId) - { - $this->cId = $cId; - - return $this; - } - - /** - * Get cId. - * - * @return int - */ - public function getCId() - { - return $this->cId; - } -}