From 92e9be11f7a4563b4bbc6b0a07af953edcee50a7 Mon Sep 17 00:00:00 2001 From: Yannick Warnier Date: Sat, 21 Jul 2012 18:30:24 -0500 Subject: [PATCH] Removing dummy *Class* class generatd by Doctrine - see http://forum.symfony-project.org/viewtopic.php?t=25746&p=94599 --- main/inc/entity/class.class.php | 97 --------------------------------- 1 file changed, 97 deletions(-) delete mode 100644 main/inc/entity/class.class.php diff --git a/main/inc/entity/class.class.php b/main/inc/entity/class.class.php deleted file mode 100644 index 18054bc14c..0000000000 --- a/main/inc/entity/class.class.php +++ /dev/null @@ -1,97 +0,0 @@ -id; - } - - /** - * Set code - * - * @param string $value - * @return Class - */ - public function set_code($value) - { - $this->code = $value; - return $this; - } - - /** - * Get code - * - * @return string - */ - public function get_code() - { - return $this->code; - } - - /** - * Set name - * - * @param text $value - * @return Class - */ - public function set_name($value) - { - $this->name = $value; - return $this; - } - - /** - * Get name - * - * @return text - */ - public function get_name() - { - return $this->name; - } -} \ No newline at end of file