fixed bug in input class causing entire array to not be returned.

This commit is contained in:
Taylor Otwell
2011-07-07 22:30:15 -05:00
parent 5475048749
commit ad824341a6
3 changed files with 12 additions and 7 deletions

View File

@@ -7,14 +7,14 @@ class Session {
*
* @var Session\Driver
*/
private static $driver;
public static $driver;
/**
* The session.
*
* @var array
*/
private static $session = array();
public static $session = array();
/**
* Get the session driver.