refactoring.

This commit is contained in:
Taylor Otwell
2011-09-28 21:59:54 -05:00
parent 3dbc60aee3
commit 5cc7c3a6bd
5 changed files with 17 additions and 17 deletions

View File

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