refactor database structure... moved db\manager back to system\db.php

This commit is contained in:
Taylor Otwell
2011-08-13 22:23:07 -05:00
parent 21a6040a79
commit 9d4d6e52bd
5 changed files with 15 additions and 18 deletions

View File

@@ -1,7 +1,6 @@
<?php namespace System\Session;
use System\Config;
use System\DB\Manager;
class DB implements Driver, Sweeper {
@@ -71,7 +70,7 @@ class DB implements Driver, Sweeper {
*/
private function table()
{
return Manager::connection()->table(Config::get('session.table'));
return \System\DB::connection()->table(Config::get('session.table'));
}
}