Skip to content

Commit

Permalink
Fix version in since tag
Browse files Browse the repository at this point in the history
  • Loading branch information
samdark authored Dec 25, 2023
1 parent 4c959b5 commit dffb4c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions framework/db/BaseActiveRecord.php
Original file line number Diff line number Diff line change
Expand Up @@ -1806,7 +1806,7 @@ private function isValueDifferent($newValue, $oldValue)
* - active record instance represented by array (i.e. active record was loaded using [[ActiveQuery::asArray()]]).
* @param string|array $relationNames the names of the relations of primary models to be loaded from database. See [[ActiveQueryInterface::with()]] on how to specify this argument.
* @param bool $asArray whether to load each related model as an array or an object (if the relation itself does not specify that).
* @since 2.0.49
* @since 2.0.50
*/
public static function loadRelationsFor(&$models, $relationNames, $asArray = false)
{
Expand All @@ -1833,7 +1833,7 @@ public static function loadRelationsFor(&$models, $relationNames, $asArray = fal
*
* @param string|array $relationNames the names of the relations of this model to be loaded from database. See [[ActiveQueryInterface::with()]] on how to specify this argument.
* @param bool $asArray whether to load each relation as an array or an object (if the relation itself does not specify that).
* @since 2.0.49
* @since 2.0.50
*/
public function loadRelations($relationNames, $asArray = false)
{
Expand Down

0 comments on commit dffb4c7

Please sign in to comment.