Commit 55eb2ecb authored by Taylor Otwell's avatar Taylor Otwell

Fixed parameters on Session::has.

parent 525f53b5
...@@ -70,10 +70,9 @@ class Session { ...@@ -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)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment