Browse Source

Merge pull request #253 from sparksp/2.2b1/session

Session should throw an Exception when it's not started
Taylor Otwell 13 years ago
parent
commit
35e364282a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/session.php

+ 1 - 1
laravel/session.php

@@ -111,7 +111,7 @@ class Session {
 	 */
 	public static function __callStatic($method, $parameters)
 	{
-		return call_user_func_array(array(static::$instance, $method), $parameters);
+		return call_user_func_array(array(static::instance(), $method), $parameters);
 	}
 
 }