Merge pull request #6891 from kartik-v/patch-1

More correct usage of TimeStamp touch method
This commit is contained in:
Carsten Brandt
2015-01-16 12:45:27 +01:00

View File

@ -53,7 +53,7 @@ use yii\db\Expression;
* timestamp to the specified attribute(s) and save them to the database. For example,
*
* ```php
* $this->timestamp->touch('creation_time');
* $model->touch('creation_time');
* ```
*
* @author Qiang Xue <qiang.xue@gmail.com>