mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-03 22:14:36 +01:00
27 lines
528 B
PHP
27 lines
528 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::class, ['ref' => 'id']);
|
|
}
|
|
}
|