for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by IntelliJ IDEA.
* User: rozbo
* Date: 2017/2/27
* Time: δΈε2:45
*/
namespace puck;
class Mysql extends \MysqliDb{
static public function getDb($db){
static
static $dbList;
if(!isset($dbList[$db])){
$dbList[$db]=new \MysqliDb(config('db.'.$db));
}
return $dbList[$db];