mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-16 20:27:24 +01:00
20 lines
291 B
PHP
20 lines
291 B
PHP
<?php
|
|
|
|
namespace yiiunit\data\ar\mongodb;
|
|
|
|
class Item extends ActiveRecord
|
|
{
|
|
public static function collectionName()
|
|
{
|
|
return 'item';
|
|
}
|
|
|
|
public function attributes()
|
|
{
|
|
return [
|
|
'_id',
|
|
'name',
|
|
'price',
|
|
];
|
|
}
|
|
} |