mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-22 23:17:12 +01:00
- allows to have dynamic definition of attributes depended on the instance - there was no real need for it to be static. Places that used it static have been refactored. fixes #1318
19 lines
265 B
PHP
19 lines
265 B
PHP
<?php
|
|
|
|
namespace yiiunit\data\ar\elasticsearch;
|
|
|
|
/**
|
|
* Class Item
|
|
*
|
|
* @property integer $id
|
|
* @property string $name
|
|
* @property integer $category_id
|
|
*/
|
|
class Item extends ActiveRecord
|
|
{
|
|
public function attributes()
|
|
{
|
|
return ['name', 'category_id'];
|
|
}
|
|
}
|