<?php
/**
 * Cron Job - التقرير اليومي
 * يُشغل تلقائياً كل يوم في الساعة 11 مساءً
 * 
 * إضافة في Cron:
 * 0 23 * * * /usr/bin/php /path/to/backend/cron/daily-report.php
 */

require_once __DIR__ . '/../helpers/telegram-notifications.php';

echo "Starting daily report.../n";

try {
    $result = sendDailyReport();
    
    if ($result) {
        echo "✅ Daily report sent successfully!/n";
        echo "Time: " . date('Y-m-d H:i:s') . "/n";
    } else {
        echo "❌ Failed to send daily report/n";
    }
    
} catch (Exception $e) {
    echo "❌ Error: " . $e->getMessage() . "/n";
}
?>
