Files
yii2/tests/data/validators/models/ValidatorTestMainModel.php
2026-01-27 05:53:03 -03:00

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']);
}
}