芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/qrafiqxcreativeagency.com/accounts/office/app/Console/Kernel.php
command('recurring-task-create')->dailyAt('23:59')->timezone($timezone); $schedule->command('auto-stop-timer')->dailyAt('23:30')->timezone($timezone); $schedule->command('birthday-notification')->dailyAt('09:00')->timezone($timezone); // Every Minute $schedule->command('send-event-reminder')->everyMinute(); $schedule->command('hide-cron-message')->everyMinute(); $schedule->command('send-attendance-reminder')->everyMinute(); $schedule->command('sync-user-permissions')->everyMinute(); // $schedule->command('fetch-ticket-emails')->everyMinute(); // phpcs:ignore $schedule->command('send-auto-followup-reminder')->everyMinute(); $schedule->command('send-time-tracker')->everyMinute(); // Daily $schedule->command('send-project-reminder')->daily()->timezone($timezone); $schedule->command('send-auto-task-reminder')->daily()->timezone($timezone); $schedule->command('recurring-invoice-create')->daily()->timezone($timezone); $schedule->command('recurring-expenses-create')->daily()->timezone($timezone); $schedule->command('send-invoice-reminder')->daily()->timezone($timezone); $schedule->command('delete-seen-notification')->daily()->timezone($timezone); $schedule->command('update-exchange-rate')->daily()->timezone($timezone); $schedule->command('send-daily-timelog-report')->daily()->timezone($timezone); $schedule->command('log:clear --keep-last')->daily()->timezone($timezone); // Hourly $schedule->command('clear-null-session')->hourly(); $schedule->command('create-database-backup')->hourly(); $schedule->command('delete-database-backup')->hourly(); $schedule->command('add-missing-permissions')->everyThirtyMinutes(); $schedule->command('send-monthly-attendance-report')->monthlyOn(); $schedule->command('queue:flush')->weekly(); // WORKSUITESAAS $schedule->command('free-licence-renew')->daily(); $schedule->command('licence-expire')->daily(); $schedule->command('trial-expire')->daily(); // Schedule the queue:work command to run without overlapping and with 3 tries $schedule->command('queue:work --tries=3 --stop-when-empty')->withoutOverlapping(); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__ . '/Commands'); } }