Skip to content

Commit

Permalink
Merge pull request laravel#1683 from bmitch/master
Browse files Browse the repository at this point in the history
A couple of typos
  • Loading branch information
taylorotwell committed Jul 15, 2015
2 parents 1609656 + b69a3fa commit f2c0dd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion artisan.md
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ Using the `queue` method on the `Artisan` facade, you may even queue Artisan com
//
});

If you need to specify the value of an option that does not accept string values, such as the `--force` flag on the `migrate:refresh` command, you may pass a booelan `true` or `false`:
If you need to specify the value of an option that does not accept string values, such as the `--force` flag on the `migrate:refresh` command, you may pass a boolean `true` or `false`:

$exitCode = Artisan::call('migrate:refresh', [
'--force' => true,
Expand Down
2 changes: 1 addition & 1 deletion validation.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ As you can see, we simply pass the incoming HTTP request and desired validation
If your HTTP request contains "nested" parameters, you may specify them in your validation rules using "dot" syntax:

$this->validate($request, [
'title' => 'required|unqiue:posts|max:255',
'title' => 'required|unique:posts|max:255',
'author.name' => 'required',
'author.description' => 'required',
]);
Expand Down

0 comments on commit f2c0dd1

Please sign in to comment.