HI, I am using package Aura\Sql. And met a problem.I have 2 Db masters, so i set array $arrMasters like this:$arrMasters[0] = array(...);$arrMasters[1] = array(...);when i want to get the first master, i tried to use $conn->getMaster(0), and it returned a random result...i think the problem is the if clause.public function getMaster($name = null){if ( ! $name) {
...}}it should be like this:public function getMaster($name = null){if ( $name === null) {
...}}and same problem in getSlave().
Thanks~
Roy Gu