Files
yii2/tests/data/validators/models/ValidatorTestRefModel.php
2022-08-03 12:32:18 +03:00

32 lines
631 B
PHP

<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yiiunit\data\validators\models;
use yiiunit\data\ar\ActiveRecord;
/**
* @property int id
* @property string a_field
* @property int ref
*/
class ValidatorTestRefModel extends ActiveRecord
{
public $test_val = 2;
public $test_val_fail = 99;
public static function tableName()
{
return 'validator_ref';
}
public function getMain()
{
return $this->hasOne(ValidatorTestMainModel::className(), ['id' => 'ref']);
}
}