init Abgabe

This commit is contained in:
WummerMIB
2025-12-04 23:37:05 +01:00
parent dda70db0be
commit 4db823c14a
534 changed files with 72693 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
class Factory{
public static function createLoginModel(){
return new LoginModel();
}
public static function createBenutzerModel(){
return new BenutzerModel();
}
public static function createChatModel(){
return new ChatModel();
}
}