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

26 lines
533 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;
class ValidatorTestMainModel extends ActiveRecord
{
public $testMainVal = 1;
public static function tableName()
{
return 'validator_main';
}
public function getReferences()
{
return $this->hasMany(ValidatorTestRefModel::className(), ['ref' => 'id']);
}
}