コード例 #1
0
ファイル: BaseModel.php プロジェクト: khanhicetea/ndkfw
 public function __construct($db_connection = null)
 {
     if ($db_connection == null) {
         $this->db = Db::get();
     } else {
         $this->db = $db_connection;
     }
 }