Skip to content

Commit

Permalink
A couple of typos
Browse files Browse the repository at this point in the history
  • Loading branch information
bmitch committed Jul 15, 2015
1 parent 1609656 commit b69a3fa
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 b69a3fa

Please sign in to comment.