Commit a19f499c by Alexander Makarov

Added missing return to docs

parent 87d42e9f
...@@ -643,7 +643,7 @@ class CommentQuery extends ActiveQuery ...@@ -643,7 +643,7 @@ class CommentQuery extends ActiveQuery
*/ */
public function all($db = null) public function all($db = null)
{ {
parent::all($db); return parent::all($db);
} }
/** /**
...@@ -656,7 +656,7 @@ class CommentQuery extends ActiveQuery ...@@ -656,7 +656,7 @@ class CommentQuery extends ActiveQuery
*/ */
public function one($db = null) public function one($db = null)
{ {
parent::one($db); return parent::one($db);
} }
} }
``` ```
......
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