call(function () { $firstDay = date('Y-m-01'); // First day of the current month $lastDay = date('Y-m-t'); // Last day of the current month $calculate_agent_cost = true; $third_party_integrations_allow = true; $third_party_integrations_nextcloud = true; $third_party_integrations_open_project = false; $email_send_allow = true; $gitea_export = new GiteaExport( $calculate_agent_cost, $third_party_integrations_allow, $third_party_integrations_nextcloud, $third_party_integrations_open_project, $email_send_allow, ); $gitea_export->export_issues($firstDay, $lastDay, ['state' => 'closed']); })->monthly(); } }