Commit 6c9d903e authored by Spencer Deinum's avatar Spencer Deinum

Added Command::run() to the documentation for artisan tasks.

Signed-off-by: 's avatarSpencer Deinum <spencerdeinum@gmail.com>
parent 64605f22
......@@ -38,6 +38,14 @@ Now you can call the "run" method of your task via the command-line. You can eve
php artisan notify taylor
#### Calling a task from your application:
Command::run(array('notify'));
#### Calling a task from your application with arguements:
Command::run(array('notify', 'taylor'));
Remember, you can call specific methods on your task, so, let's add an "urgent" method to the notify task:
#### Adding a method to the task:
......@@ -97,4 +105,4 @@ To run your task just use the usual Laravel double-colon syntax to indicate the
#### Setting the default database connection:
php artisan foo --database=sqlite
\ No newline at end of file
php artisan foo --database=sqlite
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment