From ad4d1caa9e744af57ca58a4e57576533eb682d00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Fri, 23 Jan 2015 16:28:37 +0100 Subject: move WallabagBundle into Wallabag:CoreBundle --- src/WallabagBundle/Entity/Users.php | 155 ------------------------------------ 1 file changed, 155 deletions(-) delete mode 100644 src/WallabagBundle/Entity/Users.php (limited to 'src/WallabagBundle/Entity/Users.php') diff --git a/src/WallabagBundle/Entity/Users.php b/src/WallabagBundle/Entity/Users.php deleted file mode 100644 index a48f2240..00000000 --- a/src/WallabagBundle/Entity/Users.php +++ /dev/null @@ -1,155 +0,0 @@ -id; - } - - /** - * Set username - * - * @param string $username - * @return Users - */ - public function setUsername($username) - { - $this->username = $username; - - return $this; - } - - /** - * Get username - * - * @return string - */ - public function getUsername() - { - return $this->username; - } - - /** - * Set password - * - * @param string $password - * @return Users - */ - public function setPassword($password) - { - $this->password = $password; - - return $this; - } - - /** - * Get password - * - * @return string - */ - public function getPassword() - { - return $this->password; - } - - /** - * Set name - * - * @param string $name - * @return Users - */ - public function setName($name) - { - $this->name = $name; - - return $this; - } - - /** - * Get name - * - * @return string - */ - public function getName() - { - return $this->name; - } - - /** - * Set email - * - * @param string $email - * @return Users - */ - public function setEmail($email) - { - $this->email = $email; - - return $this; - } - - /** - * Get email - * - * @return string - */ - public function getEmail() - { - return $this->email; - } -} -- cgit v1.2.3