mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-24 07:57:10 +01: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'];
|
|
}
|
|
}
|