Well I am trying to run my scheduler but it doesn't seem to do anything.
I have created this command
$schedule = new Schedule();
$schedule->command("hello:test_command 5")
->cron("13 12 * * *") //should run at 12:13, used as test time
->sendOutputTo("test_data.txt");
I tried running the scheduler both automatically and manually but there's nothing from the commands themself...
When I run scheduler:run this is what I get
Running scheduled command: "C:xampp_7phpphp.exe" "artisan" hello:test_command > "NUL" 2>&1
I am running it on windows 10 and PHP 7.3 if it matters at all.
Also, test_data.txt is not being created at all.
EDIT: Just to add up, after some testing, it seems that it's not even adding the command to the schedule...