mirror of
https://github.com/yiisoft/yii2.git
synced 2025-12-04 09:00:46 +08:00
12 lines
168 B
PHP
12 lines
168 B
PHP
<?php
|
|
|
|
namespace yiiunit\data\ar\redis;
|
|
|
|
class Item extends ActiveRecord
|
|
{
|
|
public function attributes()
|
|
{
|
|
return ['id', 'name', 'category_id'];
|
|
}
|
|
}
|