Files
yii2/tests/data/ar/Item.php
2026-01-27 05:53:03 -03:00

30 lines
515 B
PHP

<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yiiunit\data\ar;
/**
* Class Item.
*
* @property int $id
* @property string $name
* @property int $category_id
*/
class Item extends ActiveRecord
{
public static function tableName()
{
return 'item';
}
public function getCategory()
{
return $this->hasOne(Category::class, ['id' => 'category_id']);
}
}