Skip to content

Commit a961d8f

Browse files
authored
Update scheduling.md file
I feel like the '/path/to/artisan' is a bit confusing a better use of words would be 'path-to-your-project'. I also found out there are some more people thinking like me: https://laracasts.com/discuss/channels/laravel/pathtoartisan-where-it-is?page=1
1 parent 8ec87f2 commit a961d8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: scheduling.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Laravel's command scheduler allows you to fluently and expressively define your
1919

2020
When using the scheduler, you only need to add the following Cron entry to your server. If you do not know how to add Cron entries to your server, consider using a service such as [Laravel Forge](https://forge.laravel.com) which can manage the Cron entries for you:
2121

22-
* * * * * php /path/to/artisan schedule:run >> /dev/null 2>&1
22+
* * * * * php /path-to-your-project/artisan schedule:run >> /dev/null 2>&1
2323

2424
This Cron will call the Laravel command scheduler every minute. When the `schedule:run` command is executed, Laravel will evaluate your scheduled tasks and runs the tasks that are due.
2525

0 commit comments

Comments
 (0)