Merge branch 'develop' into feature/http-foundation

This commit is contained in:
Taylor Otwell
2012-03-29 22:13:13 -05:00
9 changed files with 151 additions and 17 deletions

View File

@@ -120,7 +120,7 @@ class Input {
*/
public static function except($keys)
{
return array_diff_key(static::get(), array_flip($keys));
return array_diff_key(static::get(), array_flip((array) $keys));
}
/**