We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
command date on my server returns: Tue May 5 10:12:21 +10 2020
date
php function date('Y-m-d H:i:s') returns: 2020-05-05 10:12:44
date('Y-m-d H:i:s')
in schedule.php I use: $schedule->command('controller/action')->timezone(new \DateTimeZone('Asia/Vladivostok'))->dailyAt('10:15');
$schedule->command('controller/action')->timezone(new \DateTimeZone('Asia/Vladivostok'))->dailyAt('10:15');
or $schedule->command('controller/action')->dailyAt('10:15');
$schedule->command('controller/action')->dailyAt('10:15');
or $schedule->command('controller/action')->at('10:15');
$schedule->command('controller/action')->at('10:15');
And it doesn't work. But things like that: $schedule->command('controller/action')->everyMinute();
$schedule->command('controller/action')->everyMinute();
works OK.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
command
date
on my server returns:Tue May 5 10:12:21 +10 2020
php function
date('Y-m-d H:i:s')
returns:2020-05-05 10:12:44
in schedule.php I use:
$schedule->command('controller/action')->timezone(new \DateTimeZone('Asia/Vladivostok'))->dailyAt('10:15');
or
$schedule->command('controller/action')->dailyAt('10:15');
or
$schedule->command('controller/action')->at('10:15');
And it doesn't work. But things like that:
$schedule->command('controller/action')->everyMinute();
works OK.
The text was updated successfully, but these errors were encountered: