Browse Source

Added missing return to docs

tags/2.0.0-beta
Alexander Makarov 11 years ago
parent
commit
a19f499cbf
  1. 4
      docs/guide/active-record.md

4
docs/guide/active-record.md

@ -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
*/ */
public function one($db = null) public function one($db = null)
{ {
parent::one($db); return parent::one($db);
} }
} }
``` ```

Loading…
Cancel
Save