comments hinzugefügt bei Core + review + testing

This commit is contained in:
arslandevelopments
2026-08-19 14:03:01 +02:00
parent f91feadedf
commit 9eb8b1de23
3 changed files with 3 additions and 1 deletions
Regular → Executable
+3 -1
View File
@@ -1,7 +1,9 @@
<?php
// Stellt die Verbindung zur Datenbank bereit
class Database
{
// Verbindung wird zwischengespeichert damit pro Request nur eine entsteht
private static ?PDO $connection = null;
public static function connection(): PDO
@@ -29,4 +31,4 @@ class Database
return self::$connection;
}
}
}
Regular → Executable
View File