getDb() публичный статический Метод

Get DB connection
public static getDb ( ) : Db
Результат Db
Пример #1
0
 public function testGetDbException()
 {
     $this->setExpectedException('Pop\\Db\\Exception');
     $this->assertInstanceOf('Pop\\Db\\Db', Record::getDb());
 }
Пример #2
0
 public function testGetDefaultDb()
 {
     Record::setDb(Db::factory('Sqlite', array('database' => __DIR__ . '/../tmp/test.sqlite')), true);
     $this->assertInstanceOf('Pop\\Db\\Db', Record::getDb());
 }