From 3b369122645b07b290f7fcc7bccb4787745cd5ea Mon Sep 17 00:00:00 2001 From: polo Date: Tue, 24 Mar 2026 22:39:29 +0100 Subject: =?UTF-8?q?mode=20maintenance,=20optimisation=20moins=20de=20contr?= =?UTF-8?q?=C3=B4les=20en=20mode=20run,=20dossier=20service=20et=20d=C3=A9?= =?UTF-8?q?placement=20fichiers,=20sessions=20et=20entit=C3=A9=20User=20pr?= =?UTF-8?q?=C3=A9par=C3=A9es=20=C3=A0=20l'impl=C3=A9mentation=20hypoth?= =?UTF-8?q?=C3=A9tique=20des=20r=C3=B4les,=20entit=C3=A9=20AppMetadata,=20?= =?UTF-8?q?meilleure=20s=C3=A9curit=C3=A9=20de=20fillStartingDatabase?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/model/entities/AppMetadata.php | 46 ++++++++++++++++++++++++++++++++++++++ src/model/entities/User.php | 19 +++++++++++++++- 2 files changed, 64 insertions(+), 1 deletion(-) create mode 100644 src/model/entities/AppMetadata.php (limited to 'src/model/entities') diff --git a/src/model/entities/AppMetadata.php b/src/model/entities/AppMetadata.php new file mode 100644 index 0000000..ae42ad9 --- /dev/null +++ b/src/model/entities/AppMetadata.php @@ -0,0 +1,46 @@ +key_name = $key; + $this->value = $value; + } + + public function getKey(): string + { + return $this->key_name; + } + public function getValue(): string + { + return $this->value; + } + + public function setKey(string $key): void + { + $this->key_name = $key; + } + public function setValue(string $value): void + { + $this->value = $value; + } +} \ No newline at end of file diff --git a/src/model/entities/User.php b/src/model/entities/User.php index 26802e2..36bc4db 100644 --- a/src/model/entities/User.php +++ b/src/model/entities/User.php @@ -22,15 +22,24 @@ class User #[ORM\Column(type: "string", length: 255, unique: true)] // risque de modifier son mot de passe sans s'apercevoir qu'il fonctionne encore sur un autre compte private string $login; + #[ORM\Column(type: "string", length: 50)] + private string $role; + #[ORM\Column(type: "string", length: 255)] private string $password; - public function __construct(string $login, string $password) + public function __construct(string $login, string $role, string $password) { $this->login = $login; + $this->role = $role; $this->password = $password; } + public function getId(): int + { + return $this->id_user; + } + public function getLogin(): string { return $this->login; @@ -39,6 +48,14 @@ class User { $this->login = $login; } + public function getRole(): string + { + return $this->role; + } + public function setRole(string $role): void + { + $this->role = $role; + } public function getPassword(): string { return $this->password; -- cgit v1.2.3