Commit 817516ad by Alexander Makarov

Added missing return

parent c7d7a3ce
...@@ -227,7 +227,7 @@ class ActiveQuery extends Query ...@@ -227,7 +227,7 @@ class ActiveQuery extends Query
*/ */
public function indexBy($column) public function indexBy($column)
{ {
parent::indexBy($column); return parent::indexBy($column);
} }
private function createModels($rows) private function createModels($rows)
......
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