DAO Pattern angepasst & Passwörter gehashed

This commit is contained in:
2026-05-27 19:25:58 +02:00
parent 46a307a5b0
commit 4d8f338649
4 changed files with 14 additions and 3 deletions
+7
View File
@@ -0,0 +1,7 @@
<?php
interface UserDAOInterface {
public function findUser($email);
public function addUser($email, $username, $password);
public function deleteUser($email);
}