Commit 99a818c0 by Alexander Makarov

Fixes #3630: `yii\db\Command::queryInternal()` is now protected

parent 210d694a
......@@ -22,6 +22,7 @@ Yii Framework 2 Change Log
- Enh #5613: Added `--overwrite` option to Gii console command to support overwriting all files (motin, qiangxue)
- Enh #5646: Call `yii\base\ErrorHandler::unregister()` instead of `restore_*_handlers` directly (aivus)
- Enh: `Console::confirm()` now uses `Console::stdout()` instead of `echo` to be consistent with all other functions (cebe)
- Chg #3630: `yii\db\Command::queryInternal()` is now protected (samdark)
2.0.0 October 12, 2014
----------------------
......
......@@ -785,7 +785,7 @@ class Command extends Component
* @return mixed the method execution result
* @throws Exception if the query causes any problem
*/
private function queryInternal($method, $fetchMode = null)
protected function queryInternal($method, $fetchMode = null)
{
$rawSql = $this->getRawSql();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment