mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-05 06:54:39 +01:00
24 lines
437 B
PHP
24 lines
437 B
PHP
<?php
|
|
/**
|
|
* @link http://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license http://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';
|
|
}
|
|
}
|