This commit is contained in:
greggy
2025-10-07 08:54:38 +02:00
parent d7682e2073
commit fd1d053d65
8 changed files with 502 additions and 210 deletions

View File

@@ -0,0 +1,14 @@
<?php
require_once __DIR__ . '/../doctrine-config.php';
use Cron\AdCityForcedTextlinkCron;
try {
$cron = new AdCityForcedTextlinkCron($entityManager);
$cron->run();
} catch (\Exception $e) {
echo "Fehler: " . $e->getMessage() . "\n";
echo $e->getTraceAsString() . "\n";
exit(1);
}