Pfadanpassung (test)

This commit is contained in:
NOrtmann1
2026-05-27 16:59:04 +02:00
parent 24a3ad0639
commit 04195f5d92
3 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -1,8 +1,8 @@
<?php
if (!isset($abs_path)) {
require_once "../../path.php";
require_once "path.php";
}
require_once $abs_path . '/php/model/ArticleManagerDAO.php';
require_once '/php/model/ArticleManagerDAO.php';
/**
* Klasse: Eine lokale Lösung des ArticleManagerDAO.
* Schreibt zunächst Daten lokal in das Verzeichnis und kann diese wieder auslesen.
@@ -11,7 +11,7 @@ require_once $abs_path . '/php/model/ArticleManagerDAO.php';
*/
class LocalArticleManager implements ArticleManagerDAO {
private string $file = "../../data/articles.json";
private string $file = "data/articles.json";
/**
* Gibt die LocalArticleManager-Instanz zurück.