From 6c959134eeee5546ec5b17658d77533241332d8b Mon Sep 17 00:00:00 2001 From: "victor.soulier" Date: Sun, 19 Nov 2023 12:51:30 +0100 Subject: [PATCH] =?UTF-8?q?DELETE=20:=20ancienne=20classe=20m=C3=A9itier?= =?UTF-8?q?=20scientist?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/src/model/metier/Scientist.php | 138 ------------------------- 1 file changed, 138 deletions(-) delete mode 100644 project/src/model/metier/Scientist.php diff --git a/project/src/model/metier/Scientist.php b/project/src/model/metier/Scientist.php deleted file mode 100644 index a9d5e58..0000000 --- a/project/src/model/metier/Scientist.php +++ /dev/null @@ -1,138 +0,0 @@ -id = $id; - $this->name = $name; - $this->firstName = $firstName; - $this->photo = $photo; - $this->description = $description; - $this->theme = $theme; - $this->difficulty = $difficulty; - } - - /** - * @return int - */ - public function getId(): int - { - return $this->id; - } - - /** - * @return string - */ - public function getName(): string - { - return $this->name; - } - - /** - * @param string $name - */ - public function setName(string $name): void - { - $this->name = $name; - } - - /** - * @return string - */ - public function getFirstName(): string - { - return $this->firstName; - } - - /** - * @param string $firstName - */ - public function setFirstName(string $firstName): void - { - $this->firstName = $firstName; - } - - /** - * @return string - */ - public function getPhoto(): string - { - return $this->photo; - } - - /** - * @param string $photo - */ - public function setPhoto(string $photo): void - { - $this->photo = $photo; - } - - /** - * @return string - */ - public function getDescription(): string - { - return $this->description; - } - - /** - * @param string $description - */ - public function setDescription(string $description): void - { - $this->description = $description; - } - - /** - * @return Theme - */ - public function getTheme(): Theme - { - return $this->theme; - } - - /** - * @param Theme $theme - */ - public function setTheme(Theme $theme): void - { - $this->theme = $theme; - } - - /** - * @return Difficulty - */ - public function getDifficulty(): Difficulty - { - return $this->difficulty; - } - - /** - * @param Difficulty $difficulty - */ - public function setDifficulty(Difficulty $difficulty): void - { - $this->difficulty = $difficulty; - } -} \ No newline at end of file