Beitrag erstellen #13

Merged
niklas.ortmann merged 164 commits from Beitrag-erstellen into dev 2026-05-29 13:22:11 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 18810dcfe2 - Show all commits
+1 -1
View File
@@ -17,7 +17,7 @@ interface ArticleManagerDAO
* Mögliche Exceptions: * Mögliche Exceptions:
* TODO Fehlerbeschreibung hinzufügen & tags hinzufügen * TODO Fehlerbeschreibung hinzufügen & tags hinzufügen
*/ */
public function addArticle(string $title, string $content, string $author, string $category, string $tags); public function addArticle($title, $content, $author, $category, $tags);
/** /**
* Ein angemeldeter Nutzer bearbeitet einen Beitrag. * Ein angemeldeter Nutzer bearbeitet einen Beitrag.
+1 -1
View File
@@ -45,7 +45,7 @@ class LocalArticleManager implements ArticleManagerDAO {
); );
} }
public function addArticle(string $title, string $content, string $author, string $category, string $tags) public function addArticle($title, $content, $author, $category, $tags)
{ {
$articles = $this->getAllArticles(); $articles = $this->getAllArticles();