Commit 525f53b5 by Taylor Otwell

Fix formatting on Session::has method.

parent 2ef32608
...@@ -77,12 +77,12 @@ class Session { ...@@ -77,12 +77,12 @@ class Session {
{ {
foreach (func_get_args() as $key) foreach (func_get_args() as $key)
{ {
if ( ! array_key_exists($key, static::$session['data']) and if ( ! array_key_exists($key, static::$session['data']) and
! array_key_exists(':old:'.$key, static::$session['data']) and ! array_key_exists(':old:'.$key, static::$session['data']) and
! array_key_exists(':new:'.$key, static::$session['data'])) ! array_key_exists(':new:'.$key, static::$session['data']))
{ {
return false; return false;
} }
} }
return true; return true;
......
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