Commit f997838f authored by Eddie Monge Jr.'s avatar Eddie Monge Jr.

Update laravel/documentation/requests.md

Fixed typo. Missing opening paren
parent 25299045
...@@ -35,7 +35,7 @@ Sometimes you may need to determine if the current URI is a given string, or beg ...@@ -35,7 +35,7 @@ Sometimes you may need to determine if the current URI is a given string, or beg
#### Determine if the current URI begins with "docs/": #### Determine if the current URI begins with "docs/":
if URI::is('docs/*')) if (URI::is('docs/*'))
{ {
// The current URI begins with "docs/"! // The current URI begins with "docs/"!
} }
...@@ -74,4 +74,4 @@ Sometimes you may need to determine if the current URI is a given string, or beg ...@@ -74,4 +74,4 @@ Sometimes you may need to determine if the current URI is a given string, or beg
if (Request::cli()) if (Request::cli())
{ {
// This request came from the CLI! // This request came from the CLI!
} }
\ No newline at end of file
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