Browse Source

Fixed parameters on Session::has.

Taylor Otwell 14 years ago
parent
commit
55eb2ecb08
1 changed files with 1 additions and 2 deletions
  1. 1 2
      system/session.php

+ 1 - 2
system/session.php

@@ -70,10 +70,9 @@ class Session {
 	/**
 	/**
 	 * Determine if the session or flash data contains an item or set of items.
 	 * Determine if the session or flash data contains an item or set of items.
 	 *
 	 *
-	 * @param  string  $key
 	 * @return bool
 	 * @return bool
 	 */
 	 */
-	public static function has($key)
+	public static function has()
 	{
 	{
 		foreach (func_get_args() as $key)
 		foreach (func_get_args() as $key)
 		{
 		{