I am trying to execute job daily at certain time, but it is always executed 2 hours later.
The job just writes a log.
If I use this scheduler:
$schedule->job(new MyJob)->dailyAt('10:00');
The log is always written at 12:00AM.
I have a vps with debian, and the result of the date
command on the server is right.
I tried to change the file /etc/adjtime
from UTC
to LOCAL
without success.