mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-17 16:01:15 +08:00
21 lines
386 B
PHP
21 lines
386 B
PHP
<?php
|
|
|
|
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']);
|
|
}
|
|
}
|