On Line 398 is:
$schemaCache = (\Yii::$app && is_string($this->db->schemaCache) ? \Yii::$app->get($this->db->schemaCache, false) : $this->db->schemaCache;
Should Be:
$schemaCache = (\Yii::$app && is_string($this->db->schemaCache)) ? \Yii::$app->get($this->db->schemaCache, false) : $this->db->schemaCache;
Fixed in db9e2fa
Still wrong place of this bracket. Now is
syntax error, unexpected ')'
I'm sleep-coding :)
Most helpful comment
I'm sleep-coding :)