Item.php 168 Bytes
Newer Older
1 2 3 4 5 6
<?php

namespace yiiunit\data\ar\redis;

class Item extends ActiveRecord
{
7 8 9 10
    public function attributes()
    {
        return ['id', 'name', 'category_id'];
    }
AlexGx committed
11
}