refactoring

This commit is contained in:
Taylor Otwell
2011-10-10 21:34:15 -05:00
parent d1c5aea26b
commit 6cb79e6676
22 changed files with 279 additions and 333 deletions

View File

@@ -107,9 +107,7 @@ class Input {
throw new \Exception('A session driver must be specified in order to access old input.');
}
$driver = IoC::container()->core('session');
return Arr::get($driver->get(Input::old_input, array()), $key, $default);
return Arr::get(Session\Manager::$payload->get(Input::old_input, array()), $key, $default);
}
/**