Modified: trunk/Sungrazr/Server/Handler.php (101 => 102)
--- trunk/Sungrazr/Server/Handler.php 2007-12-19 06:46:47 UTC (rev 101)
+++ trunk/Sungrazr/Server/Handler.php 2007-12-20 20:17:16 UTC (rev 102)
@@ -30,11 +30,15 @@
* `caller`
* : (Sungrazr_Server_Adapter) The server adapter that loaded this class.
*
+ * `request`
+ * : (Solar_Request) The incoming request to the API.
+ *
* @var array
*
*/
protected $_Sungrazr_Server_Handler = array(
'caller' => null,
+ 'request' => null,
);
/**
@@ -84,6 +88,7 @@
$this->_type = strtolower(end(explode('_', $caller_class)));
}
+ // special setup
$this->_setup();
}