Merge pull request #1591 from eddiemonge/patch-1
Update laravel/documentation/requests.md
This commit is contained in:
commit
23d23dd07c
|
@ -35,7 +35,7 @@ #### Determine if the URI is "home":
|
|||
|
||||
#### Determine if the current URI begins with "docs/":
|
||||
|
||||
if URI::is('docs/*'))
|
||||
if (URI::is('docs/*'))
|
||||
{
|
||||
// The current URI begins with "docs/"!
|
||||
}
|
||||
|
@ -74,4 +74,4 @@ #### Determining if the current requst is via the Artisan CLI:
|
|||
if (Request::cli())
|
||||
{
|
||||
// This request came from the CLI!
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue