mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR Fixed spelling, grammar and example code (#3796, thanks bgribaudo)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@73748 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
40910f9f71
commit
e0b4a1a837
@ -67,7 +67,7 @@ class HTTPRequest extends Object implements ArrayAccess {
|
||||
/**
|
||||
* @var array $allParams Contains an assiciative array of all
|
||||
* arguments matched in all calls to {@link RequestHandler->handleRequest()}.
|
||||
* Its a "historical record" thats specific to the current call of
|
||||
* It's a "historical record" that's specific to the current call of
|
||||
* {@link handleRequest()}, and is only complete once the "last call" to that method is made.
|
||||
*/
|
||||
protected $allParams = array();
|
||||
@ -222,7 +222,7 @@ class HTTPRequest extends Object implements ArrayAccess {
|
||||
|
||||
/**
|
||||
* Enables the existence of a key-value pair in the request to be checked using
|
||||
* array syntax, so isset($request['title']) will check for $_POST['title'] and $_GET['title]
|
||||
* array syntax, so isset($request['title']) will check for $_POST['title'] and $_GET['title']
|
||||
*
|
||||
* @param unknown_type $offset
|
||||
* @return boolean
|
||||
@ -269,7 +269,7 @@ class HTTPRequest extends Object implements ArrayAccess {
|
||||
|
||||
/**
|
||||
* Matches a URL pattern
|
||||
* The pattern can contain a number of segments, separted by / (and an extension indicated by a .)
|
||||
* The pattern can contain a number of segments, separated by / (and an extension indicated by a .)
|
||||
*
|
||||
* The parts can be either literals, or, if they start with a $ they are interpreted as variables.
|
||||
* - Literals must be provided in order to match
|
||||
|
Loading…
Reference in New Issue
Block a user