mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-20 00:20:44 +08:00
added inherit doc block and task number
This commit is contained in:
@@ -115,7 +115,7 @@ Yii Framework 2 Change Log
|
|||||||
- Enh: Added `yii\web\View::POS_LOAD` (qiangxue)
|
- Enh: Added `yii\web\View::POS_LOAD` (qiangxue)
|
||||||
- Enh: Added `yii\web\Response::clearOutputBuffers()` (qiangxue)
|
- Enh: Added `yii\web\Response::clearOutputBuffers()` (qiangxue)
|
||||||
- Enh: Improved `QueryBuilder::buildLimit()` to support big numbers (qiangxue)
|
- Enh: Improved `QueryBuilder::buildLimit()` to support big numbers (qiangxue)
|
||||||
- Enh: Added typecast database types into php types (dizews)
|
- Enh:#2211 Added typecast database types into php types (dizews)
|
||||||
- Enh #2240: Improved `yii\web\AssetManager::publish()`, `yii\web\AssetManager::getPublishedPath()` and `yii\web\AssetManager::getPublishedUrl()` to support aliases (vova07)
|
- Enh #2240: Improved `yii\web\AssetManager::publish()`, `yii\web\AssetManager::getPublishedPath()` and `yii\web\AssetManager::getPublishedUrl()` to support aliases (vova07)
|
||||||
- Chg #1519: `yii\web\User::loginRequired()` now returns the `Response` object instead of exiting the application (qiangxue)
|
- Chg #1519: `yii\web\User::loginRequired()` now returns the `Response` object instead of exiting the application (qiangxue)
|
||||||
- Chg #1586: `QueryBuilder::buildLikeCondition()` will now escape special characters and use percentage characters by default (qiangxue)
|
- Chg #1586: `QueryBuilder::buildLikeCondition()` will now escape special characters and use percentage characters by default (qiangxue)
|
||||||
|
|||||||
@@ -984,19 +984,7 @@ abstract class BaseActiveRecord extends Model implements ActiveRecordInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates an active record object using a row of data from the database/storage.
|
* @inheritdoc
|
||||||
*
|
|
||||||
* This method is *not* meant to be used to create new records.
|
|
||||||
*
|
|
||||||
* It is an internal method meant to be called to create active record objects after
|
|
||||||
* fetching data from the database. It is mainly used by [[ActiveQuery]] to populate
|
|
||||||
* the query results into Active Records.
|
|
||||||
*
|
|
||||||
* When calling this method manually you should call [[afterFind()]] on the created
|
|
||||||
* record to trigger the [[EVENT_AFTER_FIND|afterFind Event]].
|
|
||||||
*
|
|
||||||
* @param array $row attribute values (name => value)
|
|
||||||
* @return static the newly created active record.
|
|
||||||
*/
|
*/
|
||||||
public static function create($row)
|
public static function create($row)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user