Commit 6f964b6d by Alexander Makarov

corrected phpdoc

parent 85e8ff20
...@@ -1180,9 +1180,9 @@ abstract class ActiveRecord extends \yii\base\Model ...@@ -1180,9 +1180,9 @@ abstract class ActiveRecord extends \yii\base\Model
/** /**
* Creates an active record with the given attributes. * Creates an active record with the given attributes.
* This method is internally used by the find methods. * This method is internally used by the find methods.
* @param array $attributes attribute values (column name=>column value) *
* @param boolean $callAfterFind whether to call {@link afterFind} after the record is populated. * @param array $row attribute values (column name=>column value)
* This parameter is added in version 1.0.3. *
* @return ActiveRecord the newly created active record. The class of the object is the same as the model class. * @return ActiveRecord the newly created active record. The class of the object is the same as the model class.
* Null is returned if the input data is false. * Null is returned if the input data is false.
*/ */
...@@ -1209,7 +1209,7 @@ abstract class ActiveRecord extends \yii\base\Model ...@@ -1209,7 +1209,7 @@ abstract class ActiveRecord extends \yii\base\Model
* depends the attributes that are to be populated to the record. * depends the attributes that are to be populated to the record.
* For example, by creating a record based on the value of a column, * For example, by creating a record based on the value of a column,
* you may implement the so-called single-table inheritance mapping. * you may implement the so-called single-table inheritance mapping.
* @param array $attributes list of attribute values for the active records. * @param array $row list of attribute values for the active records.
* @return ActiveRecord the active record * @return ActiveRecord the active record
*/ */
protected static function instantiate($row) protected static function instantiate($row)
......
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