/** * @return \Rapid\Db */ protected function db() { if (!$this->db) { $connectionName = $this->connectionName ? $this->connectionName : 'default'; $this->db = \Rapid\Db::get($connectionName); } return $this->db; }
protected function dropTestTable() { $db = \Rapid\Db::get(); $db->query('DROP TABLE my_table'); }