[Solar-svn] Revision 2805
pmjones at solarphp.com
pmjones at solarphp.com
Sat Oct 6 09:13:58 CDT 2007
whitespace changes
Modified: trunk/Solar/Request.php
===================================================================
--- trunk/Solar/Request.php 2007-10-06 14:01:27 UTC (rev 2804)
+++ trunk/Solar/Request.php 2007-10-06 14:13:58 UTC (rev 2805)
@@ -1,26 +1,26 @@
<?php
/**
- *
+ *
* Class for gathering details about the request environment.
*
* @category Solar
- *
+ *
* @package Solar
- *
+ *
* @author Paul M. Jones <pmjones at solarphp.com>
- *
+ *
* @author Clay Loveless <clay at killersoft.com>
- *
+ *
* @license http://opensource.org/licenses/bsd-license.php BSD
- *
+ *
* @version $Id$
- *
+ *
*/
/**
- *
+ *
* Class for gathering details about the request environment.
- *
+ *
* Which keys can be tampered with for XSS insertions?
*
* For SERVER ...
@@ -51,75 +51,75 @@
* For FILES, the 'name' and 'type' keys for each file entry.
*
* @category Solar
- *
+ *
* @package Solar
*
*/
class Solar_Request extends Solar_Base {
/**
- *
+ *
* Imported $_ENV values.
- *
+ *
* @var array
- *
+ *
*/
public $env;
/**
- *
+ *
* Imported $_GET values.
- *
+ *
* @var array
- *
+ *
*/
public $get;
/**
- *
+ *
* Imported $_POST values.
- *
+ *
* @var array
- *
+ *
*/
public $post;
/**
- *
+ *
* Imported $_COOKIE values.
- *
+ *
* @var array
- *
+ *
*/
public $cookie;
/**
- *
+ *
* Imported $_SERVER values.
- *
+ *
* @var array
- *
+ *
*/
public $server;
/**
- *
+ *
* Imported $_FILES values.
- *
+ *
* @var array
- *
+ *
*/
public $files;
/**
- *
+ *
* Imported $_SERVER['HTTP_*'] values.
*
* Header keys are normalized and lower-cased; keys and values are
* filtered for control characters.
- *
+ *
* @var array
- *
+ *
*/
public $http;
@@ -133,11 +133,11 @@
public $argv;
/**
- *
+ *
* Constructor.
- *
+ *
* @param array $config User-defined configuration values.
- *
+ *
*/
public function __construct($config = null)
{
@@ -366,13 +366,13 @@
}
/**
- *
+ *
* Reloads properties from the superglobal arrays.
*
* Normalizes HTTP header keys, dispels magic quotes.
*
* @return void
- *
+ *
*/
public function reset()
{
More information about the Solar-svn
mailing list