mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-06 23:39:02 +01:00
25 lines
440 B
PHP
25 lines
440 B
PHP
<?php
|
|
|
|
/**
|
|
* @link https://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license https://www.yiiframework.com/license/
|
|
*/
|
|
|
|
namespace yiiunit\data\ar;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property string $title
|
|
* @property string $content
|
|
* @property int $version
|
|
* @property array $properties
|
|
*/
|
|
class Document extends ActiveRecord
|
|
{
|
|
public function optimisticLock()
|
|
{
|
|
return 'version';
|
|
}
|
|
}
|