Skip to content

Commit cae32f9

Browse files
author
Shawn McCool
committed
Merge branch 'hotfix/artisan-commands'
2 parents 6735039 + c8cef02 commit cae32f9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

artisan/commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,4 @@ Generate an application key | `php artisan key:generate`
9999
Description | Command
100100
------------- | -------------
101101
Setting the Laravel environment | `php artisan foo --env=local`
102-
Setting the default database connection | `php artisan foo --database=sqlitename`
102+
Setting the default database connection | `php artisan foo --db=sqlitename`

artisan/tasks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<a name="the-basics"></a>
1111
## The Basics
1212

13-
Laravel's command-line tool is called Artisan. Artisan can be used to run "tasks" such as migrations, cronjobs, unit-tests, or anything that want.
13+
Laravel's command-line tool is called Artisan. Artisan can be used to run "tasks" such as migrations, cronjobs, unit-tests, or anything that want.
1414

1515
<a name="creating-tasks"></a>
1616
## Creating & Running Tasks
@@ -97,4 +97,4 @@ To run your task just use the usual Laravel double-colon syntax to indicate the
9797

9898
#### Setting the default database connection:
9999

100-
php artisan foo --database=sqlite
100+
php artisan foo --db=sqlite

0 commit comments

Comments
 (0)