17 lines
289 B
PHP
17 lines
289 B
PHP
<?php
|
|
|
|
class Factory{
|
|
|
|
public static function createLoginModel(){
|
|
return new LoginModel();
|
|
}
|
|
|
|
public static function createBenutzerModel(){
|
|
return new BenutzerModel();
|
|
}
|
|
|
|
public static function createChatModel(){
|
|
return new ChatModel();
|
|
}
|
|
|
|
} |