Initial commit: sync from server - all domains and code

This commit is contained in:
Hermes Agent
2026-05-18 22:12:40 +02:00
commit 22206d361a
54 changed files with 3636 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?php
declare(strict_types=1);
namespace App\Repositories;
use App\Support\Database;
use PDO;
abstract class BaseRepository
{
protected PDO $db;
public function __construct()
{
$this->db = Database::connection();
}
protected function now(): string
{
return gmdate('c');
}
}