profileArticle-controller.php Implementierung

This commit is contained in:
NOrtmann1
2026-05-29 17:00:32 +02:00
parent 88c369de32
commit ff23e6c9a2
4 changed files with 19 additions and 23 deletions
+6
View File
@@ -62,6 +62,12 @@ interface ArticleManagerDAO
*/
public function getAllArticles();
/**
* Gibt alle Beiträge eines Nutzer mit einer gegebenen ID aus.
* @param $author
* @return Article[]
*/
public function getArticlesByAuthor($author);
}
?>